1999-09-21 18:33:09 +00:00
|
|
|
"""distutils.command
|
|
|
|
|
|
|
|
Package containing implementation of all the standard Distutils
|
2000-03-18 17:36:09 +00:00
|
|
|
commands."""
|
1999-09-21 18:33:09 +00:00
|
|
|
|
2000-03-02 01:49:45 +00:00
|
|
|
__revision__ = "$Id$"
|
1999-03-22 14:55:25 +00:00
|
|
|
|
|
|
|
__all__ = ['build',
|
|
|
|
'build_py',
|
1999-09-21 18:33:09 +00:00
|
|
|
'build_ext',
|
2000-03-29 02:18:39 +00:00
|
|
|
'build_clib',
|
1999-09-21 18:33:09 +00:00
|
|
|
'install',
|
2000-03-29 02:18:39 +00:00
|
|
|
'install_lib',
|
2000-05-12 00:52:23 +00:00
|
|
|
'install_scripts',
|
|
|
|
'install_data',
|
2000-03-18 17:36:09 +00:00
|
|
|
'clean',
|
2000-02-18 00:11:52 +00:00
|
|
|
'sdist',
|
2000-03-31 03:14:51 +00:00
|
|
|
'bdist',
|
|
|
|
'bdist_dumb',
|
1999-03-22 14:55:25 +00:00
|
|
|
]
|