[Checkins] SVN: z3c.i18n/trunk/ - buildoutify

Fred L. Drake, Jr. fdrake at gmail.com
Thu Mar 22 14:17:06 EDT 2007


Log message for revision 73475:
  - buildoutify
  - set up the dependencies
  

Changed:
  _U  z3c.i18n/trunk/
  A   z3c.i18n/trunk/buildout.cfg
  U   z3c.i18n/trunk/setup.py

-=-

Property changes on: z3c.i18n/trunk
___________________________________________________________________
Name: svn:ignore
   - build
dist

   + .installed.cfg
bin
build
develop-eggs
dist
eggs
parts


Added: z3c.i18n/trunk/buildout.cfg
===================================================================
--- z3c.i18n/trunk/buildout.cfg	2007-03-22 17:26:38 UTC (rev 73474)
+++ z3c.i18n/trunk/buildout.cfg	2007-03-22 18:17:05 UTC (rev 73475)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = z3c.i18n [test]


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

Modified: z3c.i18n/trunk/setup.py
===================================================================
--- z3c.i18n/trunk/setup.py	2007-03-22 17:26:38 UTC (rev 73474)
+++ z3c.i18n/trunk/setup.py	2007-03-22 18:17:05 UTC (rev 73475)
@@ -20,7 +20,15 @@
     namespace_packages = ['z3c'],
     zip_safe=False,
     install_requires = [
-    # XXX no requirements so far
-    ],
-    #dependency_links = ['http://download.zope.org/distribution/'],
+        'setuptools',
+        'zope.component',
+        'zope.i18n',
+        'zope.i18nmessageid',
+        'zope.interface',
+        'zope.schema',
+        ],
+    extras_require = {
+        'test': ['zope.testing', 'zope.app.testing'],
+        },
+    dependency_links = ['http://download.zope.org/distribution/'],
     )



More information about the Checkins mailing list