1999-09-22 15:24:04 +00:00
|
|
|
"""distutils
|
|
|
|
|
|
2001-04-23 17:13:03 +00:00
|
|
|
The main package for the Python Module Distribution Utilities. Normally
|
1999-09-22 15:24:04 +00:00
|
|
|
used from a setup script as
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
setup (...)
|
|
|
|
|
"""
|
|
|
|
|
|
2000-03-02 01:49:45 +00:00
|
|
|
__revision__ = "$Id$"
|
2000-04-10 00:02:16 +00:00
|
|
|
|
2006-08-16 08:13:26 +00:00
|
|
|
# Distutils version
|
|
|
|
|
#
|
2009-02-05 09:06:23 +00:00
|
|
|
# Updated automatically by the Python release process.
|
2006-08-16 08:13:26 +00:00
|
|
|
#
|
2008-04-03 04:10:02 +00:00
|
|
|
#--start constants--
|
2010-03-06 20:34:14 +00:00
|
|
|
__version__ = "2.7a4"
|
2008-04-03 04:10:02 +00:00
|
|
|
#--end constants--
|