[Checkins] SVN: zope.publisher/trunk/ moved zope.testing and zope.app.testing dependencies to 'test' extra

Thomas Lotze tl at gocept.com
Wed Aug 15 07:55:56 EDT 2007


Log message for revision 78838:
  moved zope.testing and zope.app.testing dependencies to 'test' extra

Changed:
  U   zope.publisher/trunk/buildout.cfg
  U   zope.publisher/trunk/setup.py

-=-
Modified: zope.publisher/trunk/buildout.cfg
===================================================================
--- zope.publisher/trunk/buildout.cfg	2007-08-15 06:00:19 UTC (rev 78837)
+++ zope.publisher/trunk/buildout.cfg	2007-08-15 11:55:56 UTC (rev 78838)
@@ -6,4 +6,4 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.publisher
+eggs = zope.publisher [test]

Modified: zope.publisher/trunk/setup.py
===================================================================
--- zope.publisher/trunk/setup.py	2007-08-15 06:00:19 UTC (rev 78837)
+++ zope.publisher/trunk/setup.py	2007-08-15 11:55:56 UTC (rev 78838)
@@ -31,7 +31,6 @@
       package_dir = {'': 'src'},
 
       namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
       install_requires=['setuptools',
                         'zope.component',
                         'zope.event',
@@ -41,10 +40,12 @@
                         'zope.location',
                         'zope.proxy',
                         'zope.security',
-                        'zope.testing',
-                        'zope.app.testing',
                         'zope.deprecation',
                         'zope.deferredimport'],
+      extras_require=dict(
+          test = ['zope.testing',
+                  'zope.app.testing'],
+          ),
       include_package_data = True,
 
       zip_safe = False,



More information about the Checkins mailing list