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',
|
2000-05-25 01:19:18 +00:00
|
|
|
'build_scripts',
|
2000-05-28 23:49:03 +00:00
|
|
|
'clean',
|
1999-09-21 18:33:09 +00:00
|
|
|
'install',
|
2000-03-29 02:18:39 +00:00
|
|
|
'install_lib',
|
2000-05-27 01:25:16 +00:00
|
|
|
'install_headers',
|
2000-05-12 00:52:23 +00:00
|
|
|
'install_scripts',
|
|
|
|
'install_data',
|
2000-02-18 00:11:52 +00:00
|
|
|
'sdist',
|
2000-03-31 03:14:51 +00:00
|
|
|
'bdist',
|
|
|
|
'bdist_dumb',
|
2000-05-13 01:48:15 +00:00
|
|
|
'bdist_rpm',
|
2000-06-27 01:24:07 +00:00
|
|
|
'bdist_wininst',
|
1999-03-22 14:55:25 +00:00
|
|
|
]
|