0001 """distutils.command 0002 0003 Package containing implementation of all the standard Distutils 0004 commands.""" 0005 0006 # This module should be kept compatible with Python 1.5.2. 0007 0008 __revision__ = "$Id: __init__.py,v 1.20 2004/10/13 12:35:28 anthonybaxter Exp $" 0009 0010 __all__ = ['build', 0011 'build_py', 0012 'build_ext', 0013 'build_clib', 0014 'build_scripts', 0015 'clean', 0016 'install', 0017 'install_lib', 0018 'install_headers', 0019 'install_scripts', 0020 'install_data', 0021 'sdist', 0022 'register', 0023 'bdist', 0024 'bdist_dumb', 0025 'bdist_rpm', 0026 'bdist_wininst', 0027 # These two are reserved for future use: 0028 #'bdist_sdux', 0029 #'bdist_pkgtool', 0030 # Note: 0031 # bdist_packager is not included because it only provides 0032 # an abstract base class 0033 ] 0034
Generated by PyXR 0.9.4