diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-06-12 18:05:03 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-06-12 18:05:03 -0400 |
commit | 423f1829b5e8b2213492e4f023f26a7c26f0b287 (patch) | |
tree | 14a73d41f42c5d3a3effce1dd47ee3af3c07d689 /setuptools/_distutils/command/__init__.py | |
parent | 48adabe567806c808fdede5afc8c57f68c4f9755 (diff) | |
parent | 75ed79d1ad1bfbb30dd684cd3cc55cb1139dc31b (diff) | |
download | python-setuptools-git-423f1829b5e8b2213492e4f023f26a7c26f0b287.tar.gz |
Merge pypa/distutils@75ed79d
Diffstat (limited to 'setuptools/_distutils/command/__init__.py')
-rw-r--r-- | setuptools/_distutils/command/__init__.py | 53 |
1 files changed, 27 insertions, 26 deletions
diff --git a/setuptools/_distutils/command/__init__.py b/setuptools/_distutils/command/__init__.py index 481eea9f..d199c242 100644 --- a/setuptools/_distutils/command/__init__.py +++ b/setuptools/_distutils/command/__init__.py @@ -3,29 +3,30 @@ Package containing implementation of all the standard Distutils commands.""" -__all__ = ['build', - 'build_py', - 'build_ext', - 'build_clib', - 'build_scripts', - 'clean', - 'install', - 'install_lib', - 'install_headers', - 'install_scripts', - 'install_data', - 'sdist', - 'register', - 'bdist', - 'bdist_dumb', - 'bdist_rpm', - 'bdist_wininst', - 'check', - 'upload', - # These two are reserved for future use: - #'bdist_sdux', - #'bdist_pkgtool', - # Note: - # bdist_packager is not included because it only provides - # an abstract base class - ] +__all__ = [ + 'build', + 'build_py', + 'build_ext', + 'build_clib', + 'build_scripts', + 'clean', + 'install', + 'install_lib', + 'install_headers', + 'install_scripts', + 'install_data', + 'sdist', + 'register', + 'bdist', + 'bdist_dumb', + 'bdist_rpm', + 'bdist_wininst', + 'check', + 'upload', + # These two are reserved for future use: + #'bdist_sdux', + #'bdist_pkgtool', + # Note: + # bdist_packager is not included because it only provides + # an abstract base class +] |