[Checkins] SVN: zc.selenium/trunk/ Merge branch upgrades to trunk.

Aaron Lehmann aaron at zope.com
Thu Mar 27 14:11:37 EDT 2008


Log message for revision 84976:
  Merge branch upgrades to trunk.
  
  

Changed:
  A   zc.selenium/trunk/buildout.cfg
  U   zc.selenium/trunk/setup.py

-=-
Copied: zc.selenium/trunk/buildout.cfg (from rev 84975, zc.selenium/branches/1.0/buildout.cfg)
===================================================================
--- zc.selenium/trunk/buildout.cfg	                        (rev 0)
+++ zc.selenium/trunk/buildout.cfg	2008-03-27 18:11:37 UTC (rev 84976)
@@ -0,0 +1,16 @@
+[buildout]
+parts =
+    test
+    py
+develop = .
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zc.selenium
+defaults = '--tests-pattern [fn]?tests --exit-with-status -1'.split()
+working-directory = ${buildout:directory}
+
+[py]
+recipe = zc.recipe.egg
+eggs = zc.selenium
+interpreter = py

Modified: zc.selenium/trunk/setup.py
===================================================================
--- zc.selenium/trunk/setup.py	2008-03-27 18:06:59 UTC (rev 84975)
+++ zc.selenium/trunk/setup.py	2008-03-27 18:11:37 UTC (rev 84976)
@@ -2,7 +2,7 @@
 
 setup(
     name='zc.selenium',
-    version='0.1dev',
+    version='1.1.0dev',
     author='Zope Corporation',
     author_email='info at zope.com',
     url='http://svn.zope.org/zc.seleinum',
@@ -13,7 +13,9 @@
     zip_safe=False,
     license='ZPL 2.1',
     namespace_packages = ['zc'],
-    install_requires=[
-        'setuptools'
-    ],
-    )
+    install_requires =[
+        'zope.interface',
+        'zope.component',
+        'zope.publisher',
+    ]
+)



More information about the Checkins mailing list