[z3-checkins] r27284 - z3/hurry.query/trunk

faassen at codespeak.net faassen at codespeak.net
Tue May 16 18:48:32 CEST 2006


Author: faassen
Date: Tue May 16 18:48:31 2006
New Revision: 27284

Added:
   z3/hurry.query/trunk/setup.py
Log:
Preliminary setup.py.


Added: z3/hurry.query/trunk/setup.py
==============================================================================
--- (empty file)
+++ z3/hurry.query/trunk/setup.py	Tue May 16 18:48:31 2006
@@ -0,0 +1,24 @@
+from setuptools import setup, find_packages
+
+setup(
+    name="hurry.query",
+    version="0.8.1",
+    packages=find_packages('src', exclude=["*.tests", "*.ftests"]),
+    
+    package_dir= {'':'src'},
+    
+    namespace_packages=['hurry'],
+    package_data = {
+    '': ['*.txt', '*.zcml'],
+    },
+
+    zip_safe=False,
+    author='Infrae',
+    author_email='faassen at infrae.com',
+    description="""\
+hurry.query is a higher level query system built on top of the Zope 3
+catalog. It makes it easy to perform catalog queries in Zope 3 code.
+""",
+    license='BSD',
+    keywords="zope zope3",
+    )


More information about the z3-checkins mailing list