[Checkins] SVN: scheduler/trunk/ - finished buildout

Christian Theune ct at gocept.com
Tue Jun 5 09:32:26 EDT 2007


Log message for revision 76371:
   - finished buildout
  

Changed:
  U   scheduler/trunk/buildout.cfg
  U   scheduler/trunk/setup.py

-=-
Modified: scheduler/trunk/buildout.cfg
===================================================================
--- scheduler/trunk/buildout.cfg	2007-06-05 13:25:49 UTC (rev 76370)
+++ scheduler/trunk/buildout.cfg	2007-06-05 13:32:26 UTC (rev 76371)
@@ -5,4 +5,4 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = XXX
+eggs = scheduler [test]

Modified: scheduler/trunk/setup.py
===================================================================
--- scheduler/trunk/setup.py	2007-06-05 13:25:49 UTC (rev 76370)
+++ scheduler/trunk/setup.py	2007-06-05 13:32:26 UTC (rev 76371)
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 
 setup(
-    name = '',
+    name = 'scheduler',
     version = '0.1',
     author = 'Zope Corporation and Contributors',
     author_email = 'zope3-dev at zope.org',
@@ -9,8 +9,8 @@
     license = 'ZPL 2.1',
 
     packages = find_packages('src'),
-    namespace_packages = ['zope', 'zope.app'],
     package_dir = {'': 'src'},
     install_requires = ['setuptools'],
+    extras_require = dict(test=['zope.app.testing']),
     zip_safe = False,
     )



More information about the Checkins mailing list