distutils.commands
distutils.commands
entry points are used by
setuptools to add new commands to
setup.py
scripts made with setuptools.setup()
. If a project defines a
distutils.commands
entry point named foo
that points to a subclass of
setuptools.Command
, then once the project is installed, users will be
able to run python setup.py foo
to run the custom command. See the
setuptools documentation for more
information.