cpython/Lib/distutils/command/__init__.py
Greg Ward fb4ece7fea Simplified doc string.
Added 'clean' to list of commands.
2000-03-18 17:36:09 +00:00

16 lines
315 B
Python

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