cpython/Lib/distutils/command/__init__.py

21 lines
417 B
Python
Raw Normal View History

"""distutils.command
Package containing implementation of all the standard Distutils
commands."""
2000-03-02 01:49:45 +00:00
__revision__ = "$Id$"
__all__ = ['build',
'build_py',
'build_ext',
'build_clib',
'install',
'install_lib',
'install_scripts',
'install_data',
'clean',
2000-02-18 00:11:52 +00:00
'sdist',
2000-03-31 03:14:51 +00:00
'bdist',
'bdist_dumb',
]