diff options
author | Paul Ganssle <paul@ganssle.io> | 2019-10-31 11:25:57 -0400 |
---|---|---|
committer | Paul Ganssle <paul@ganssle.io> | 2019-11-02 15:10:29 -0400 |
commit | f413f95e95b34b26d9ed9d9c43b3e4b3d30caecc (patch) | |
tree | b064d6fa23466fcfd560cc513a661d6f5e38392e /setuptools/command/__init__.py | |
parent | 6ac7b4ee036ef8e6954198689d214e8ee9b29118 (diff) | |
download | external_python_setuptools-f413f95e95b34b26d9ed9d9c43b3e4b3d30caecc.tar.gz external_python_setuptools-f413f95e95b34b26d9ed9d9c43b3e4b3d30caecc.tar.bz2 external_python_setuptools-f413f95e95b34b26d9ed9d9c43b3e4b3d30caecc.zip |
Remove "upload" and "register" commands.
The upload and register commands were deprecated over a year ago, in
July 2018 (PR GH-1410, discussed in issue GH-1381). It is time to
actively remove them in favor of twine.
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r-- | setuptools/command/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py index fe619e2e..743f5588 100644 --- a/setuptools/command/__init__.py +++ b/setuptools/command/__init__.py @@ -2,8 +2,7 @@ __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', - 'register', 'bdist_wininst', 'upload_docs', 'upload', 'build_clib', - 'dist_info', + 'bdist_wininst', 'upload_docs', 'build_clib', 'dist_info', ] from distutils.command.bdist import bdist |