summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/distutils/command/__init__.py1
-rw-r--r--Lib/distutils/command/bdist.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py
index 95bce8d..ef8e9ad 100644
--- a/Lib/distutils/command/__init__.py
+++ b/Lib/distutils/command/__init__.py
@@ -20,4 +20,5 @@ __all__ = ['build',
'bdist',
'bdist_dumb',
'bdist_rpm',
+ 'bdist_wininst',
]
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index 47d4cbc..3fcbf77 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -55,6 +55,8 @@ class bdist (Command):
'ztar': ('bdist_dumb', "compressed tar file"),
'tar': ('bdist_dumb', "tar file"),
'zip': ('bdist_dumb', "ZIP file"),
+ 'wininst': ('bdist_wininst',
+ "Windows executable installer"),
}
# establish the preferred order
format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar', 'zip']