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 (...)
|
|
|
|
"""
|
|
|
|
|
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
|
|
|
|
#
|
2009-02-05 05:06:23 -04:00
|
|
|
# Updated automatically by the Python release process.
|
2006-08-16 05:13:26 -03:00
|
|
|
#
|
2008-04-03 01:10:02 -03:00
|
|
|
#--start constants--
|
2010-04-10 13:22:05 -03:00
|
|
|
__version__ = "2.7b1"
|
2008-04-03 01:10:02 -03:00
|
|
|
#--end constants--
|