summaryrefslogtreecommitdiff
path: root/command/bdist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-27 01:24:07 +0000
committerGreg Ward <gward@python.net>2000-06-27 01:24:07 +0000
commit1930cf43c4152c2db35164b0dca4a8a85f58c37d (patch)
treee01cfdf17068c948d310a3749117cc1578ec5e2f /command/bdist.py
parent2bc3b231e4cc5a7d5570923a0d49df5500171d35 (diff)
downloadpython-setuptools-git-1930cf43c4152c2db35164b0dca4a8a85f58c37d.tar.gz
Infrastructure support for the "bdist_wininst" command.
Diffstat (limited to 'command/bdist.py')
-rw-r--r--command/bdist.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/command/bdist.py b/command/bdist.py
index 47d4cbc9..3fcbf779 100644
--- a/command/bdist.py
+++ b/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']