[Checkins] SVN: Sandbox/J1m/zc.zeo/ Temporarily added an external to zc.ngi which is evolving as we work

Jim Fulton jim at zope.com
Tue Jan 1 12:45:03 EST 2008


Log message for revision 82630:
  Temporarily added an external to zc.ngi which is evolving as we work
  on zeo.
  

Changed:
  _U  Sandbox/J1m/zc.zeo/
  U   Sandbox/J1m/zc.zeo/buildout.cfg
  U   Sandbox/J1m/zc.zeo/setup.py

-=-

Property changes on: Sandbox/J1m/zc.zeo
___________________________________________________________________
Name: svn:externals
   + zc.ngi svn+ssh://svn.zope.org/repos/main/zc.ngi/trunk



Modified: Sandbox/J1m/zc.zeo/buildout.cfg
===================================================================
--- Sandbox/J1m/zc.zeo/buildout.cfg	2008-01-01 17:38:59 UTC (rev 82629)
+++ Sandbox/J1m/zc.zeo/buildout.cfg	2008-01-01 17:45:02 UTC (rev 82630)
@@ -1,2 +1,7 @@
 [buildout]
-develop = .
+develop = . zc.ngi
+parts = test
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zc.zeo

Modified: Sandbox/J1m/zc.zeo/setup.py
===================================================================
--- Sandbox/J1m/zc.zeo/setup.py	2008-01-01 17:38:59 UTC (rev 82629)
+++ Sandbox/J1m/zc.zeo/setup.py	2008-01-01 17:45:02 UTC (rev 82630)
@@ -4,7 +4,7 @@
 """
 
 setup(
-    name = ''
+    name = 'zc.zeo',
     version = '0.1',
     author = 'Jim Fulton',
     author_email = 'jim at zope.com',
@@ -14,7 +14,7 @@
     packages = find_packages('src'),
     namespace_packages = ['zc'],
     package_dir = {'': 'src'},
-    install_requires = 'setuptools',
+    install_requires = ['zc.ngi', 'setuptools'], 
     zip_safe = False,
     entry_points=entry_points,
     )



More information about the Checkins mailing list