diff options
author | Greg Ward <gward@python.net> | 2000-06-27 01:24:07 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-06-27 01:24:07 (GMT) |
commit | 1f9b73b57503d82836547f2780d9a6a4812523b4 (patch) | |
tree | ffb8c7b478499d1a7d97c60db9f0f112ce87f615 /Lib/distutils/command | |
parent | 855dab99875e733c858bf55e2adc27d3d0234c9a (diff) | |
download | cpython-1f9b73b57503d82836547f2780d9a6a4812523b4.zip cpython-1f9b73b57503d82836547f2780d9a6a4812523b4.tar.gz cpython-1f9b73b57503d82836547f2780d9a6a4812523b4.tar.bz2 |
Infrastructure support for the "bdist_wininst" command.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/__init__.py | 1 | ||||
-rw-r--r-- | Lib/distutils/command/bdist.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 95bce8d..ef8e9ad 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -20,4 +20,5 @@ __all__ = ['build', 'bdist', 'bdist_dumb', 'bdist_rpm', + 'bdist_wininst', ] 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 @@ 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'] |