]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distutils/__init__.py
more comments and a typo fix
[wxWidgets.git] / wxPython / distutils / __init__.py
CommitLineData
1e4a197e
RD
1"""distutils
2
3The main package for the Python Module Distribution Utilities. Normally
4used 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 1.5.2.
12
13__revision__ = "$Id$"
14
15__version__ = "1.0.3"