0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 17:47:13 +01:00
cpython/Lib/distutils/command/__init__.py

24 lines
412 B
Python
Raw Normal View History

"""distutils.command
Package containing implementation of all the standard Distutils
commands. Currently this means:
build
build_py
build_ext
install
install_py
install_ext
but this list will undoubtedly grow with time."""
__rcsid__ = "$Id$"
__all__ = ['build',
'build_py',
'build_ext',
'install',
'install_py',
'install_ext',
]