diff options
| author | Tarek Ziad? <tarek@ziade.org> | 2010-02-25 02:06:55 -0500 |
|---|---|---|
| committer | Tarek Ziad? <tarek@ziade.org> | 2010-02-25 02:06:55 -0500 |
| commit | 4c77edb085af28698ea8d5c1ae3f62f880d4462a (patch) | |
| tree | 9ade9ecca6791494779b11e423932cd53347b08e /src/distutils2 | |
| parent | 1bf595568336ef955f7b34d42627084603e04b27 (diff) | |
| download | disutils2-4c77edb085af28698ea8d5c1ae3f62f880d4462a.tar.gz | |
one location for the version + shortcute
Diffstat (limited to 'src/distutils2')
| -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-- |
