Infrastructure support for the "bdist_wininst" command.
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 @@
'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']