Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6046c5e0298c25515ea58abc8ab87f7413e3f743 authored by Barry Warsaw on 03 December 2008, 17:29:10 UTC
Oops, one revision we forgot.
Tip revision: 6046c5e
__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
#
# Please coordinate with Marc-Andre Lemburg <mal@egenix.com> when adding
# new features to distutils that would warrant bumping the version number.
#
# In general, major and minor version should loosely follow the Python
# version number the distutils code was shipped with.
#

#--start constants--
__version__ = "3.0"
#--end constants--
back to top