[Checkins] SVN: zope.html/trunk/ - buildoutify

Fred L. Drake, Jr. fdrake at gmail.com
Mon Oct 29 12:26:04 EDT 2007


Log message for revision 81178:
  - buildoutify
  - bump version for trunk
  

Changed:
  _U  zope.html/trunk/
  A   zope.html/trunk/buildout.cfg
  U   zope.html/trunk/setup.py

-=-

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


Added: zope.html/trunk/buildout.cfg
===================================================================
--- zope.html/trunk/buildout.cfg	                        (rev 0)
+++ zope.html/trunk/buildout.cfg	2007-10-29 16:26:03 UTC (rev 81178)
@@ -0,0 +1,7 @@
+[buildout]
+develop = .
+parts = test
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zope.html


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

Modified: zope.html/trunk/setup.py
===================================================================
--- zope.html/trunk/setup.py	2007-10-29 13:08:58 UTC (rev 81177)
+++ zope.html/trunk/setup.py	2007-10-29 16:26:03 UTC (rev 81178)
@@ -2,11 +2,34 @@
 
 setup(
     name="zope.html",
-    version="0.1dev",
+    version="1.0.1dev",
     packages=find_packages('src'),
     package_dir={'':'src'},
     namespace_packages=['zope'],
     include_package_data=True,
-    install_requires = ['setuptools'],
-    zip_safe = False
+    install_requires=[
+        'pytz',
+        'setuptools',
+        'zc.resourcelibrary',
+        'ZODB3',
+        'zope.annotation',
+        'zope.app.authentication',
+        'zope.app.debugskin',
+        'zope.app.form',
+        'zope.app.server',
+        'zope.app.testing',
+        'zope.app.zcmlfiles',
+        'zope.component',
+        'zope.event',
+        'zope.file',
+        'zope.formlib',
+        'zope.i18nmessageid',
+        'zope.interface',
+        'zope.lifecycleevent',
+        'zope.mimetype',
+        'zope.publisher',
+        'zope.schema',
+        'zope.testing',
+        ],
+    zip_safe=False,
     )



More information about the Checkins mailing list