Fix a bug in the ``compiler`` package that caused invalid code to be
[python/dscho.git] / Lib / distutils / __init__.py
blob21d34c767bc5187f23046354476b4708b8e6fd72
1 """distutils
3 The main package for the Python Module Distribution Utilities. Normally
4 used from a setup script as
6 from distutils.core import setup
8 setup (...)
9 """
11 # This module should be kept compatible with Python 2.1.
13 __revision__ = "$Id$"
15 # Distutils version
17 # Please coordinate with Marc-Andre Lemburg <mal@egenix.com> when adding
18 # new features to distutils that would warrant bumping the version number.
20 # In general, major and minor version should loosely follow the Python
21 # version number the distutils code was shipped with.
23 __version__ = "2.5.0"