diff options
Diffstat (limited to 'src/distutils2/__init__.py')
| -rw-r--r-- | src/distutils2/__init__.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/distutils2/__init__.py b/src/distutils2/__init__.py index ecc163d..b77c534 100644 --- a/src/distutils2/__init__.py +++ b/src/distutils2/__init__.py @@ -7,13 +7,10 @@ used from a setup script as setup (...) """ +__all__ = ['__version__', 'setup'] __revision__ = "$Id: __init__.py 78020 2010-02-06 16:37:32Z benjamin.peterson $" +__version__ = "1.0a1" + +from distutils2.core import setup -# Distutils version -# -# Updated automatically by the Python release process. -# -#--start constants-- -__version__ = "2.7a3" -#--end constants-- |
