1999-09-21 15:33:09 -03:00
|
|
|
"""distutils.command
|
|
|
|
|
|
|
|
Package containing implementation of all the standard Distutils
|
|
|
|
commands. Currently this means:
|
|
|
|
|
|
|
|
build
|
|
|
|
build_py
|
|
|
|
build_ext
|
|
|
|
install
|
|
|
|
install_py
|
|
|
|
install_ext
|
2000-01-30 14:31:34 -04:00
|
|
|
dist
|
1999-09-21 15:33:09 -03:00
|
|
|
|
|
|
|
but this list will undoubtedly grow with time."""
|
|
|
|
|
|
|
|
__rcsid__ = "$Id$"
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
__all__ = ['build',
|
|
|
|
'build_py',
|
1999-09-21 15:33:09 -03:00
|
|
|
'build_ext',
|
|
|
|
'install',
|
|
|
|
'install_py',
|
|
|
|
'install_ext',
|
2000-02-17 20:11:52 -04:00
|
|
|
'sdist',
|
1999-03-22 10:55:25 -04:00
|
|
|
]
|