symbian-qemu-0.9.1-12/python-win32-2.6.1/lib/distutils/__init__.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 """distutils
       
     2 
       
     3 The main package for the Python Module Distribution Utilities.  Normally
       
     4 used from a setup script as
       
     5 
       
     6    from distutils.core import setup
       
     7 
       
     8    setup (...)
       
     9 """
       
    10 
       
    11 # This module should be kept compatible with Python 2.1.
       
    12 
       
    13 __revision__ = "$Id: __init__.py 67515 2008-12-04 02:59:51Z barry.warsaw $"
       
    14 
       
    15 # Distutils version
       
    16 #
       
    17 # Please coordinate with Marc-Andre Lemburg <mal@egenix.com> when adding
       
    18 # new features to distutils that would warrant bumping the version number.
       
    19 #
       
    20 # In general, major and minor version should loosely follow the Python
       
    21 # version number the distutils code was shipped with.
       
    22 #
       
    23 
       
    24 #--start constants--
       
    25 __version__ = "2.6.1"
       
    26 #--end constants--