mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
the version number. For the distutils version numbering scheme, see http://mail.python.org/pipermail/distutils-sig/2005-January/004368.html
16 lines
276 B
Python
16 lines
276 B
Python
"""distutils
|
|
|
|
The main package for the Python Module Distribution Utilities. Normally
|
|
used from a setup script as
|
|
|
|
from distutils.core import setup
|
|
|
|
setup (...)
|
|
"""
|
|
|
|
# This module should be kept compatible with Python 2.1.
|
|
|
|
__revision__ = "$Id$"
|
|
|
|
__version__ = "2.4.1"
|