mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
19 lines
360 B
Python
19 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',
|
|
]
|