[Python-checkins] python/nondist/sandbox/setuptools setup.py, 1.23, 1.24

pje@users.sourceforge.net pje at users.sourceforge.net
Sat Jul 9 06:27:41 CEST 2005


Update of /cvsroot/python/python/nondist/sandbox/setuptools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1406

Modified Files:
	setup.py 
Log Message:
Remove old-style requirements from setup.py, to avoid confusing people who
look to it for an example of setuptools use.


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- setup.py	8 Jul 2005 15:52:05 -0000	1.23
+++ setup.py	9 Jul 2005 04:27:38 -0000	1.24
@@ -17,7 +17,8 @@
     
 VERSION = "0.5a8"
 
-from setuptools import setup, find_packages, Require
+from setuptools import setup, find_packages
+
 setup(
     name="setuptools",
     version=VERSION,
@@ -30,19 +31,14 @@
     keywords = "CPAN PyPI distutils eggs package management",
     url = "http://peak.telecommunity.com/DevCenter/setuptools",
     test_suite = 'setuptools.tests.test_suite',
-    requires = [
-        Require('Distutils','1.0.3','distutils',
-            "http://www.python.org/sigs/distutils-sig/"
-        ),
-        Require('PyUnit', None, 'unittest', "http://pyunit.sf.net/"),
-    ],
-
-
 
     packages = find_packages(),
     py_modules = ['pkg_resources'],
     scripts = ['easy_install.py'],
 
+
+
+
     classifiers = [f.strip() for f in """
     Development Status :: 3 - Alpha
     Intended Audience :: Developers
@@ -80,3 +76,7 @@
 
 
 
+
+
+
+



More information about the Python-checkins mailing list