mirror of
https://github.com/python/cpython.git
synced 2026-05-11 15:12:20 -04:00
fb4ece7fea
Added 'clean' to list of commands.
17 lines
315 B
Python
17 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',
|
|
]
|