]> granicus.if.org Git - python/commitdiff
Infrastructure support for the "bdist_wininst" command.
authorGreg Ward <gward@python.net>
Tue, 27 Jun 2000 01:24:07 +0000 (01:24 +0000)
committerGreg Ward <gward@python.net>
Tue, 27 Jun 2000 01:24:07 +0000 (01:24 +0000)
Lib/distutils/command/__init__.py
Lib/distutils/command/bdist.py

index 95bce8d8c11aec39749526a8a71e732d4689915b..ef8e9ad694394e8fdcde6c669293017239c51f05 100644 (file)
@@ -20,4 +20,5 @@ __all__ = ['build',
            'bdist',
            'bdist_dumb',
            'bdist_rpm',
+           'bdist_wininst',
           ]
index 47d4cbc9652d472b50a514edfbbde265c33a08be..3fcbf7793d44a6a83b41da07387f95b6fd5bb636 100644 (file)
@@ -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']