[Checkins] SVN: z3c.dav/trunk/ Add buildout configuration for running the tests.

Michael Kerrin michael.kerrin at openapp.ie
Wed May 2 14:45:07 EDT 2007


Log message for revision 75024:
  Add buildout configuration for running the tests.
  

Changed:
  _U  z3c.dav/trunk/
  A   z3c.dav/trunk/buildout.cfg
  A   z3c.dav/trunk/setup.py
  U   z3c.dav/trunk/src/z3c/__init__.py

-=-

Property changes on: z3c.dav/trunk
___________________________________________________________________
Name: svn:externals
   + z3c.etree svn://svn.zope.org/repos/main/z3c.etree/trunk


Added: z3c.dav/trunk/buildout.cfg
===================================================================
--- z3c.dav/trunk/buildout.cfg	2007-05-02 18:42:54 UTC (rev 75023)
+++ z3c.dav/trunk/buildout.cfg	2007-05-02 18:45:07 UTC (rev 75024)
@@ -0,0 +1,10 @@
+[buildout]
+develop = . z3c.etree
+parts = test
+
+[test]
+recipe = zc.recipe.testrunner
+working-directory = .
+defaults = ["--tests-pattern", "^f?tests$"]
+eggs = z3c.etree [test]
+       z3c.dav [test]

Added: z3c.dav/trunk/setup.py
===================================================================
--- z3c.dav/trunk/setup.py	2007-05-02 18:42:54 UTC (rev 75023)
+++ z3c.dav/trunk/setup.py	2007-05-02 18:45:07 UTC (rev 75024)
@@ -0,0 +1,26 @@
+from setuptools import setup, find_packages
+
+setup(name = "z3c.dav",
+      version = "0.6",
+      author = "Michael Kerrin",
+      author_email = "michael.kerrin at openapp.ie",
+      url = "http://svn.zope.org/z3c.dav",
+      description = "Implementation of the WebDAV protocol for Zope3",
+      license = "ZPL",
+
+      packages = find_packages("src"),
+      package_dir = {"": "src"},
+      namespace_packages = ["z3c"],
+      install_requires = ["setuptools",
+                          "z3c.etree",
+                          "zope.app.keyreference",
+                          "zope.app.file",
+                          "zope.locking",
+                          "zc.i18n",
+                          ],
+      extras_require = dict(test = ["zope.app.zcmlfiles",
+                                    "zope.app.securitypolicy",
+                                    ]),
+
+      include_package_data = True,
+      zip_safe = False)

Modified: z3c.dav/trunk/src/z3c/__init__.py
===================================================================
--- z3c.dav/trunk/src/z3c/__init__.py	2007-05-02 18:42:54 UTC (rev 75023)
+++ z3c.dav/trunk/src/z3c/__init__.py	2007-05-02 18:45:07 UTC (rev 75024)
@@ -0,0 +1 @@
+__import__('pkg_resources').declare_namespace(__name__)



More information about the Checkins mailing list