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
|
|
|
|
2004-07-23 16:47:32 -03:00
|
|
|
__version__ = "2.4.0"
|