summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpje <pje@571e12c6-e1fa-0310-aee7-ff1267fa46bd>2004-03-19 20:40:20 +0000
committerpje <pje@571e12c6-e1fa-0310-aee7-ff1267fa46bd>2004-03-19 20:40:20 +0000
commita002492cd2114b5353be438e82f05c26aaa20c69 (patch)
tree272dab73417829f4909bc6d9a835841c74106a60
parentbee687e1c2dd33c7bbca452884f17de55695ebf7 (diff)
downloadwsgiref-a002492cd2114b5353be438e82f05c26aaa20c69.tar.gz
Added 'setuptools_boot' module that can be distributed separately, and will
automatically download and locally install the requested version of setuptools. (This also provides an early draft of functions needed for dependency installation.) git-svn-id: svn://svn.eby-sarna.com/svnroot/wsgiref@243 571e12c6-e1fa-0310-aee7-ff1267fa46bd
-rw-r--r--setuptools/__init__.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 009eced..12b6b57 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -8,6 +8,7 @@ from distutils.core import Command
from distutils.util import convert_path
import os.path
+__version__ = '0.0.1'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
@@ -36,6 +37,8 @@ def find_packages(where='.'):
return out
+
+
def setup(**attrs):
"""Do package setup
@@ -47,3 +50,33 @@ def setup(**attrs):
attrs.setdefault("distclass",Distribution)
return distutils.core.setup(**attrs)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+