diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-11-14 16:43:12 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-11-14 16:43:12 +0530 |
commit | d47f8b48935d258f4c5c3e2267911753bebd5214 (patch) | |
tree | 3ed04e75bc3fc7c8e4ce618f527565da1df630a1 /env/lib/python3.10/site-packages/setuptools/errors.py | |
parent | 9468226a9e2e2ab8cdd599f1d8538e860ca86120 (diff) | |
download | idcard-d47f8b48935d258f4c5c3e2267911753bebd5214.tar.gz idcard-d47f8b48935d258f4c5c3e2267911753bebd5214.tar.bz2 idcard-d47f8b48935d258f4c5c3e2267911753bebd5214.zip |
id card
Diffstat (limited to 'env/lib/python3.10/site-packages/setuptools/errors.py')
-rw-r--r-- | env/lib/python3.10/site-packages/setuptools/errors.py | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/env/lib/python3.10/site-packages/setuptools/errors.py b/env/lib/python3.10/site-packages/setuptools/errors.py deleted file mode 100644 index ec7fb3b..0000000 --- a/env/lib/python3.10/site-packages/setuptools/errors.py +++ /dev/null @@ -1,58 +0,0 @@ -"""setuptools.errors - -Provides exceptions used by setuptools modules. -""" - -from distutils import errors as _distutils_errors - - -# Re-export errors from distutils to facilitate the migration to PEP632 - -ByteCompileError = _distutils_errors.DistutilsByteCompileError -CCompilerError = _distutils_errors.CCompilerError -ClassError = _distutils_errors.DistutilsClassError -CompileError = _distutils_errors.CompileError -ExecError = _distutils_errors.DistutilsExecError -FileError = _distutils_errors.DistutilsFileError -InternalError = _distutils_errors.DistutilsInternalError -LibError = _distutils_errors.LibError -LinkError = _distutils_errors.LinkError -ModuleError = _distutils_errors.DistutilsModuleError -OptionError = _distutils_errors.DistutilsOptionError -PlatformError = _distutils_errors.DistutilsPlatformError -PreprocessError = _distutils_errors.PreprocessError -SetupError = _distutils_errors.DistutilsSetupError -TemplateError = _distutils_errors.DistutilsTemplateError -UnknownFileError = _distutils_errors.UnknownFileError - -# The root error class in the hierarchy -BaseError = _distutils_errors.DistutilsError - - -class RemovedCommandError(BaseError, RuntimeError): - """Error used for commands that have been removed in setuptools. - - Since ``setuptools`` is built on ``distutils``, simply removing a command - from ``setuptools`` will make the behavior fall back to ``distutils``; this - error is raised if a command exists in ``distutils`` but has been actively - removed in ``setuptools``. - """ - - -class PackageDiscoveryError(BaseError, RuntimeError): - """Impossible to perform automatic discovery of packages and/or modules. - - The current project layout or given discovery options can lead to problems when - scanning the project directory. - - Setuptools might also refuse to complete auto-discovery if an error prone condition - is detected (e.g. when a project is organised as a flat-layout but contains - multiple directories that can be taken as top-level packages inside a single - distribution [*]_). In these situations the users are encouraged to be explicit - about which packages to include or to make the discovery parameters more specific. - - .. [*] Since multi-package distributions are uncommon it is very likely that the - developers did not intend for all the directories to be packaged, and are just - leaving auxiliary code in the repository top-level, such as maintenance-related - scripts. - """ |