Commit 1930cf43 authored by Greg Ward's avatar Greg Ward

Infrastructure support for the "bdist_wininst" command.

parent 2bc3b231
...@@ -20,4 +20,5 @@ __all__ = ['build', ...@@ -20,4 +20,5 @@ __all__ = ['build',
'bdist', 'bdist',
'bdist_dumb', 'bdist_dumb',
'bdist_rpm', 'bdist_rpm',
'bdist_wininst',
] ]
...@@ -55,6 +55,8 @@ class bdist (Command): ...@@ -55,6 +55,8 @@ class bdist (Command):
'ztar': ('bdist_dumb', "compressed tar file"), 'ztar': ('bdist_dumb', "compressed tar file"),
'tar': ('bdist_dumb', "tar file"), 'tar': ('bdist_dumb', "tar file"),
'zip': ('bdist_dumb', "ZIP file"), 'zip': ('bdist_dumb', "ZIP file"),
'wininst': ('bdist_wininst',
"Windows executable installer"),
} }
# establish the preferred order # establish the preferred order
format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar', 'zip'] format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar', 'zip']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment