cpython/Lib/distutils/__init__.py

20 lines
335 B
Python
Raw Normal View History

"""distutils
2001-04-23 14:13:03 -03:00
The main package for the Python Module Distribution Utilities. Normally
used from a setup script as
from distutils.core import setup
setup (...)
"""
2000-03-01 21:49:45 -04:00
__revision__ = "$Id$"
# Distutils version
#
2009-02-05 05:06:23 -04:00
# Updated automatically by the Python release process.
#
2008-04-03 01:10:02 -03:00
#--start constants--
2008-10-01 18:46:40 -03:00
__version__ = "2.6"
2008-04-03 01:10:02 -03:00
#--end constants--