]> git.lizzy.rs Git - plan9front.git/blob - sys/lib/python/distutils/__init__.py
getpass
[plan9front.git] / sys / lib / python / distutils / __init__.py
1 """distutils
2
3 The main package for the Python Module Distribution Utilities.  Normally
4 used from a setup script as
5
6    from distutils.core import setup
7
8    setup (...)
9 """
10
11 # This module should be kept compatible with Python 2.1.
12
13 __revision__ = "$Id: __init__.py 54641 2007-03-31 21:02:43Z marc-andre.lemburg $"
14
15 # Distutils version
16 #
17 # Please coordinate with Marc-Andre Lemburg <mal@egenix.com> when adding
18 # new features to distutils that would warrant bumping the version number.
19 #
20 # In general, major and minor version should loosely follow the Python
21 # version number the distutils code was shipped with.
22 #
23 __version__ = "2.5.1"