aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r--setuptools/command/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py
index 0689b788..454b4a9f 100644
--- a/setuptools/command/__init__.py
+++ b/setuptools/command/__init__.py
@@ -2,13 +2,14 @@ __all__ = [
'alias', 'bdist_egg', 'bdist_rpm', 'build_ext', 'build_py', 'develop',
'easy_install', 'egg_info', 'install', 'install_lib', 'rotate', 'saveopts',
'sdist', 'setopt', 'test', 'upload', 'install_egg_info', 'install_scripts',
- 'register',
+ 'register', 'bdist_wininst',
]
import sys
if sys.version>='2.5':
# In Python 2.5 and above, distutils includes its own upload command
__all__.remove('upload')
+ __all__.remove('bdist_wininst') # this is only for 'upload' support
from distutils.command.bdist import bdist