[Checkins] SVN: zc.catalog/trunk/s Add some support to make an egg out of zc.catalog.

Martijn Faassen faassen at infrae.com
Tue May 2 05:57:18 EDT 2006


Log message for revision 67824:
  Add some support to make an egg out of zc.catalog.
  

Changed:
  A   zc.catalog/trunk/setup.py
  A   zc.catalog/trunk/src/zc/__init__.py

-=-
Added: zc.catalog/trunk/setup.py
===================================================================
--- zc.catalog/trunk/setup.py	2006-05-02 09:55:17 UTC (rev 67823)
+++ zc.catalog/trunk/setup.py	2006-05-02 09:57:17 UTC (rev 67824)
@@ -0,0 +1,25 @@
+from setuptools import setup, find_packages
+
+setup(
+    name="zc.catalog",
+    version="0.1",
+    packages=find_packages('src', exclude=["*.tests", "*.ftests"]),
+    
+    package_dir= {'':'src'},
+    
+    namespace_packages=['zc'],
+    package_data = {
+    '': ['*.txt', '*.zcml'],
+    },
+
+    zip_safe=False,
+    author='Zope Project',
+    author_email='zope3-dev at zope.org',
+    description="""\
+zc.catalog contains a number of extensions to the Zope 3 catalog,
+such as some new indexes, improved globbing and stemming support,
+and an alternative catalog implementation.
+""",
+    license='ZPL',
+    keywords="zope zope3",
+    )

Added: zc.catalog/trunk/src/zc/__init__.py
===================================================================
--- zc.catalog/trunk/src/zc/__init__.py	2006-05-02 09:55:17 UTC (rev 67823)
+++ zc.catalog/trunk/src/zc/__init__.py	2006-05-02 09:57:17 UTC (rev 67824)
@@ -0,0 +1,5 @@
+# this is a namespace package
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    pass



More information about the Checkins mailing list