cpython/Lib/distutils/command/__init__.py
2000-03-31 03:14:51 +00:00

18 lines
360 B
Python

"""distutils.command
Package containing implementation of all the standard Distutils
commands."""
__revision__ = "$Id$"
__all__ = ['build',
'build_py',
'build_ext',
'build_clib',
'install',
'install_lib',
'clean',
'sdist',
'bdist',
'bdist_dumb',
]