1999-09-22 12:24:04 -03:00
|
|
|
"""distutils
|
|
|
|
|
2001-04-23 14:13:03 -03:00
|
|
|
The main package for the Python Module Distribution Utilities. Normally
|
1999-09-22 12:24:04 -03:00
|
|
|
used from a setup script as
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup (...)
|
|
|
|
"""
|
|
|
|
|
2004-11-10 18:23:15 -04:00
|
|
|
# This module should be kept compatible with Python 2.1.
|
2002-11-19 09:12:28 -04:00
|
|
|
|
2000-03-01 21:49:45 -04:00
|
|
|
__revision__ = "$Id$"
|
2000-04-09 21:02:16 -03:00
|
|
|
|
2006-08-16 05:13:26 -03:00
|
|
|
# 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.
|
|
|
|
#
|
2008-02-01 18:58:17 -04:00
|
|
|
__version__ = "2.6.0"
|