Staging
v0.8.1
Revision 7dde792e62c8adeaf5d633dc89e18d16067add8e authored by Florent Xicluna on 03 September 2010, 19:52:03 UTC, committed by Florent Xicluna on 03 September 2010, 19:52:03 UTC
1 parent 24e561a
Raw File
__init__.py
"""distutils

The main package for the Python Module Distribution Utilities.  Normally
used from a setup script as

   from distutils.core import setup

   setup (...)
"""

__revision__ = "$Id$"

# Distutils version
#
# Updated automatically by the Python release process.
#
#--start constants--
__version__ = "3.2a1"
#--end constants--
back to top