blob: b583e397e2ba7fc3fc6eef27d09fab5725a69348 [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
Greg Ward3ce77fd2000-03-02 01:49:45 +000011__revision__ = "$Id$"
Greg Ward582a8702000-04-10 00:02:16 +000012
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000013# Distutils version
14#
15# Please coordinate with Marc-Andre Lemburg <mal@egenix.com> when adding
16# new features to distutils that would warrant bumping the version number.
17#
18# In general, major and minor version should loosely follow the Python
19# version number the distutils code was shipped with.
20#
Barry Warsawbb5cd082008-04-02 23:33:27 +000021
22#--start constants--
23__version__ = "3.0a4"
24#--end constants--