From: Greg Ward Date: Sun, 30 Jan 2000 18:31:34 +0000 (+0000) Subject: Added 'dist' command. X-Git-Tag: v1.6a1~524 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c67936e4eab6db332c32b51f45c91870fb58d90;p=python Added 'dist' command. --- diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 9a5aef2002..8659307cbf 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -9,6 +9,7 @@ commands. Currently this means: install install_py install_ext + dist but this list will undoubtedly grow with time.""" @@ -20,4 +21,5 @@ __all__ = ['build', 'install', 'install_py', 'install_ext', + 'dist', ]