[Checkins] SVN: zope.copypastemove/trunk/ Moved the test dependencies to a `test` extra requirement.

Hanno Schlichting plone at hannosch.info
Wed Jan 7 16:45:08 EST 2009


Log message for revision 94607:
  Moved the test dependencies to a `test` extra requirement.
  

Changed:
  U   zope.copypastemove/trunk/CHANGES.txt
  U   zope.copypastemove/trunk/buildout.cfg
  U   zope.copypastemove/trunk/setup.py

-=-
Modified: zope.copypastemove/trunk/CHANGES.txt
===================================================================
--- zope.copypastemove/trunk/CHANGES.txt	2009-01-07 20:36:09 UTC (rev 94606)
+++ zope.copypastemove/trunk/CHANGES.txt	2009-01-07 21:45:08 UTC (rev 94607)
@@ -1,18 +1,18 @@
 Changes
 =======
 
-3.4.1 (unreleased)
+3.5.0 (unreleased)
 ------------------
 
-...
+* Moved the test dependencies to a `test` extra requirement.
 
 3.4.0 (2007-09-28)
 ------------------
 
-No further changes since 3.4.0a1.
+* No further changes since 3.4.0a1.
 
 3.4.0a1 (2007-04-22)
 --------------------
 
-Initial release as a separate project, corresponds to
-zope.copypastemove from Zope 3.4.0a1
+* Initial release as a separate project, corresponds to
+  zope.copypastemove from Zope 3.4.0a1

Modified: zope.copypastemove/trunk/buildout.cfg
===================================================================
--- zope.copypastemove/trunk/buildout.cfg	2009-01-07 20:36:09 UTC (rev 94606)
+++ zope.copypastemove/trunk/buildout.cfg	2009-01-07 21:45:08 UTC (rev 94607)
@@ -1,8 +1,7 @@
 [buildout]
 develop = . 
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.copypastemove
+eggs = zope.copypastemove [test]

Modified: zope.copypastemove/trunk/setup.py
===================================================================
--- zope.copypastemove/trunk/setup.py	2009-01-07 20:36:09 UTC (rev 94606)
+++ zope.copypastemove/trunk/setup.py	2009-01-07 21:45:08 UTC (rev 94607)
@@ -23,7 +23,7 @@
                     open('CHANGES.txt').read())
 
 setup(name='zope.copypastemove',
-      version = '3.4.1dev',
+      version = '3.5.0dev',
       url='http://pypi.python.org/pypi/zope.copypastemove',
       license='ZPL 2.1',
       author='Zope Corporation and Contributors',
@@ -40,6 +40,8 @@
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope',],
+      extras_require=dict(
+          test=['zope.app.testing', 'zope.app.principalannotation']),
       install_requires=['setuptools',
                         'zope.interface',
                         'zope.exceptions',
@@ -48,9 +50,6 @@
                         'zope.location',
                         'zope.annotation',
                         'zope.lifecycleevent',
-                        # testing dependencies:
-                        'zope.app.testing',
-                        'zope.app.principalannotation',
                         ],
       include_package_data = True,
       zip_safe = False,



More information about the Checkins mailing list