[Checkins] SVN: zc.sourcefactory/trunk/ - buildoutify/eggify

Fred L. Drake, Jr. fdrake at gmail.com
Fri Mar 23 05:30:04 EDT 2007


Log message for revision 73483:
  - buildoutify/eggify
  - work out the dependencies
  

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

-=-

Property changes on: zc.sourcefactory/trunk
___________________________________________________________________
Name: svn:ignore
   + .installed.cfg
bin
build
develop-eggs
dist
eggs
parts


Added: zc.sourcefactory/trunk/buildout.cfg
===================================================================
--- zc.sourcefactory/trunk/buildout.cfg	2007-03-23 08:46:42 UTC (rev 73482)
+++ zc.sourcefactory/trunk/buildout.cfg	2007-03-23 09:29:55 UTC (rev 73483)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zc.sourcefactory [test]


Property changes on: zc.sourcefactory/trunk/buildout.cfg
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Modified: zc.sourcefactory/trunk/setup.py
===================================================================
--- zc.sourcefactory/trunk/setup.py	2007-03-23 08:46:42 UTC (rev 73482)
+++ zc.sourcefactory/trunk/setup.py	2007-03-23 09:29:55 UTC (rev 73483)
@@ -13,8 +13,18 @@
     package_dir={'':'src'},
 
     include_package_data=True,
-    install_requires=["setuptools"],
+    install_requires=[
+        "setuptools",
+        "ZODB3",
+        "zope.app",  # for zope.app.intid, zope.app.form.browser
+        "zope.component",
+        "zope.dublincore",
+        "zope.interface",
+        "zope.proxy",
+        "zope.publisher",
+        "zope.schema",
+        ],
     namespace_packages=['zc'],
-
-    zip_safe=False
+    extras_require={"test": ["zope.app.testing", "zope.testing"]},
+    zip_safe=False,
     )



More information about the Checkins mailing list