summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-05-21 17:08:16 -0400
committerGitHub <noreply@github.com>2021-05-21 17:08:16 -0400
commitc6a761fd4dd86283f25d828c7b9b56d764dcf84b (patch)
tree4729032ad87d53eda6960e20748435894a258194 /setuptools/command
parent57002305daec1d31622927c0aea0d4e7df79ec40 (diff)
parent1023e656f94124753e913bc070d82710a804b751 (diff)
downloadpython-setuptools-git-c6a761fd4dd86283f25d828c7b9b56d764dcf84b.tar.gz
Merge pull request #2678 from pypa/feature/static-commands
Move distutils command names into package metadata and declare entry points using static config.
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/__init__.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py
index 570e6957..b966dcea 100644
--- a/setuptools/command/__init__.py
+++ b/setuptools/command/__init__.py
@@ -1,15 +1,6 @@
-__all__ = [
- 'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop',
- 'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts',
- 'sdist', 'setopt', 'test', 'install_egg_info', 'install_scripts',
- 'upload_docs', 'build_clib', 'dist_info',
-]
-
from distutils.command.bdist import bdist
import sys
-from setuptools.command import install_scripts
-
if 'egg' not in bdist.format_commands:
bdist.format_command['egg'] = ('bdist_egg', "Python .egg file")
bdist.format_commands.append('egg')