[Checkins] SVN: zope.app.pagetemplate/trunk/ - start buildoutification

Fred L. Drake, Jr. fdrake at gmail.com
Sun Mar 25 06:34:24 EDT 2007


Log message for revision 73583:
  - start buildoutification
  - make some progress on dependencies
  

Changed:
  _U  zope.app.pagetemplate/trunk/
  A   zope.app.pagetemplate/trunk/buildout.cfg
  A   zope.app.pagetemplate/trunk/setup.cfg
  U   zope.app.pagetemplate/trunk/setup.py
  _U  zope.app.pagetemplate/trunk/src/zope/app/

-=-

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


Added: zope.app.pagetemplate/trunk/buildout.cfg
===================================================================
--- zope.app.pagetemplate/trunk/buildout.cfg	2007-03-25 10:29:18 UTC (rev 73582)
+++ zope.app.pagetemplate/trunk/buildout.cfg	2007-03-25 10:34:23 UTC (rev 73583)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zope.app.pagetemplate


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

Added: zope.app.pagetemplate/trunk/setup.cfg
===================================================================
--- zope.app.pagetemplate/trunk/setup.cfg	2007-03-25 10:29:18 UTC (rev 73582)
+++ zope.app.pagetemplate/trunk/setup.cfg	2007-03-25 10:34:23 UTC (rev 73583)
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = dev
+tag_svn_revision = 1


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

Modified: zope.app.pagetemplate/trunk/setup.py
===================================================================
--- zope.app.pagetemplate/trunk/setup.py	2007-03-25 10:29:18 UTC (rev 73582)
+++ zope.app.pagetemplate/trunk/setup.py	2007-03-25 10:34:23 UTC (rev 73583)
@@ -1,18 +1,28 @@
-import os
-
 from setuptools import setup, find_packages, Extension
 
 setup(name='zope.app.pagetemplate',
-      version='0.1dev',
+      version='0.1',
       url='http://svn.zope.org/zope.app.pagetemplate',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
 
       packages=find_packages('src'),
-      package_dir = {'': 'src'},
+      package_dir={'': 'src'},
 
       namespace_packages=['zope', 'zope.app'],
-      include_package_data = True,
-
-      zip_safe = False,
+      include_package_data=True,
+      install_requires=[
+          'setuptools',
+          'zope.pagetemplate',
+          ],
+      extras_require={
+          "test": [
+              "zope.app.authentication",
+              "zope.app.container",
+              "zope.app.form",
+              "zope.app.securitypolicy",
+              "zope.app.zcmlfiles",
+              ],
+          },
+      zip_safe=False,
       )


Property changes on: zope.app.pagetemplate/trunk/src/zope/app
___________________________________________________________________
Name: svn:externals
   + pagetemplate svn+ssh://svn.zope.org/repos/main/Zope3/trunk/src/zope/app/pagetemplate




More information about the Checkins mailing list