Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wiseplat
GitHub Repository: wiseplat/python-code
Path: blob/master/ invest-robot-contest_TinkoffBotTwitch-main/venv/lib/python3.8/site-packages/setuptools/errors.py
7733 views
1
"""setuptools.errors
2
3
Provides exceptions used by setuptools modules.
4
"""
5
6
from distutils.errors import DistutilsError
7
8
9
class RemovedCommandError(DistutilsError, RuntimeError):
10
"""Error used for commands that have been removed in setuptools.
11
12
Since ``setuptools`` is built on ``distutils``, simply removing a command
13
from ``setuptools`` will make the behavior fall back to ``distutils``; this
14
error is raised if a command exists in ``distutils`` but has been actively
15
removed in ``setuptools``.
16
"""
17
18