X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b4e3f352b36dee39d7e451a6c9db90862f5563e..1e4a197e4c60e461b8068b0619692ea083e30b8b:/wxPython/distutils/__init__.py?ds=inline diff --git a/wxPython/distutils/__init__.py b/wxPython/distutils/__init__.py new file mode 100644 index 0000000000..7873d297b3 --- /dev/null +++ b/wxPython/distutils/__init__.py @@ -0,0 +1,15 @@ +"""distutils + +The main package for the Python Module Distribution Utilities. Normally +used from a setup script as + + from distutils.core import setup + + setup (...) +""" + +# This module should be kept compatible with Python 1.5.2. + +__revision__ = "$Id$" + +__version__ = "1.0.3"