blob: 21d34c767bc5187f23046354476b4708b8e6fd72 [file] [log] [blame]
Greg Wardda2d3521999-09-22 15:24:04 +00001"""distutils
2
Andrew M. Kuchlingb3ca3032001-04-23 17:13:03 +00003The main package for the Python Module Distribution Utilities. Normally
Greg Wardda2d3521999-09-22 15:24:04 +00004used from a setup script as
5
6 from distutils.core import setup
7
8 setup (...)
9"""
10
Martin v. Löwis5a6601c2004-11-10 22:23:15 +000011# This module should be kept compatible with Python 2.1.
Andrew M. Kuchlingd448f662002-11-19 13:12:28 +000012
Greg Ward3ce77fd2000-03-02 01:49:45 +000013__revision__ = "$Id$"
Greg Ward582a8702000-04-10 00:02:16 +000014
Marc-André Lemburg604c8642006-08-16 08:13:26 +000015# 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.0"