symbian-qemu-0.9.1-12/python-2.6.1/Lib/distutils/command/__init__.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 """distutils.command
       
     2 
       
     3 Package containing implementation of all the standard Distutils
       
     4 commands."""
       
     5 
       
     6 # This module should be kept compatible with Python 2.1.
       
     7 
       
     8 __revision__ = "$Id: __init__.py 37828 2004-11-10 22:23:15Z loewis $"
       
     9 
       
    10 __all__ = ['build',
       
    11            'build_py',
       
    12            'build_ext',
       
    13            'build_clib',
       
    14            'build_scripts',
       
    15            'clean',
       
    16            'install',
       
    17            'install_lib',
       
    18            'install_headers',
       
    19            'install_scripts',
       
    20            'install_data',
       
    21            'sdist',
       
    22            'register',
       
    23            'bdist',
       
    24            'bdist_dumb',
       
    25            'bdist_rpm',
       
    26            'bdist_wininst',
       
    27            # These two are reserved for future use:
       
    28            #'bdist_sdux',
       
    29            #'bdist_pkgtool',
       
    30            # Note:
       
    31            # bdist_packager is not included because it only provides
       
    32            # an abstract base class
       
    33           ]