summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-27 01:24:07 (GMT)
committerGreg Ward <gward@python.net>2000-06-27 01:24:07 (GMT)
commit1f9b73b57503d82836547f2780d9a6a4812523b4 (patch)
treeffb8c7b478499d1a7d97c60db9f0f112ce87f615 /Lib/distutils/command
parent855dab99875e733c858bf55e2adc27d3d0234c9a (diff)
downloadcpython-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__.py1
-rw-r--r--Lib/distutils/command/bdist.py2
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']