Infrastructure support for the "bdist_wininst" command.

This commit is contained in:
Greg Ward 2000-06-27 01:24:07 +00:00
parent 855dab9987
commit 1f9b73b575
2 changed files with 3 additions and 0 deletions

View File

@ -20,4 +20,5 @@ __all__ = ['build',
'bdist', 'bdist',
'bdist_dumb', 'bdist_dumb',
'bdist_rpm', 'bdist_rpm',
'bdist_wininst',
] ]

View File

@ -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']