mirror of https://github.com/python/cpython
Infrastructure support for the "bdist_wininst" command.
This commit is contained in:
parent
855dab9987
commit
1f9b73b575
|
@ -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):
|
||||||
'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']
|
||||||
|
|
Loading…
Reference in New Issue