From a002492cd2114b5353be438e82f05c26aaa20c69 Mon Sep 17 00:00:00 2001 From: pje Date: Fri, 19 Mar 2004 20:40:20 +0000 Subject: 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 --- setuptools/__init__.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) 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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.1