blob: 2e9c90c7c7f7db4a787952e1dec6c89498391dc6 [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
Andrew M. Kuchlingd448f662002-11-19 13:12:28 +000011# This module should be kept compatible with Python 1.5.2.
12
Greg Ward3ce77fd2000-03-02 01:49:45 +000013__revision__ = "$Id$"
Greg Ward582a8702000-04-10 00:02:16 +000014
Thomas Heller040d6d02004-07-16 18:14:37 +000015__version__ = "1.0.4"