[Checkins] SVN: zc.table/trunk/s setup.py and __init__.py for egg creation.

Martijn Faassen faassen at infrae.com
Mon Apr 24 10:33:18 EDT 2006


Log message for revision 67568:
  setup.py and __init__.py for egg creation.
  

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

-=-
Added: zc.table/trunk/setup.py
===================================================================
--- zc.table/trunk/setup.py	2006-04-24 13:57:46 UTC (rev 67567)
+++ zc.table/trunk/setup.py	2006-04-24 14:33:17 UTC (rev 67568)
@@ -0,0 +1,27 @@
+from setuptools import setup, find_packages
+
+setup(
+    name="zc.table",
+    version="0.5",
+    install_requires=['zc.resourcelibrary >= 0.5'],
+    dependency_links=['http://download.zope.org/distribution/',],
+    packages=find_packages('src', exclude=["*.tests", "*.ftests"]),
+    
+    package_dir= {'':'src'},
+    
+    namespace_packages=['zc'],
+    package_data = {
+    '': ['*.txt', '*.zcml', '*.gif', '*.js'],
+    'zc.table':['resources/*'],
+    },
+
+    zip_safe=False,
+    author='Zope Project',
+    author_email='zope3-dev at zope.org',
+    description="""\
+This is a Zope 3 extension that helps with the construction of (HTML) tables.
+Features include dynamic HTML table generation, batching and sorting.
+""",
+    license='ZPL',
+    keywords="zope zope3",
+    )

Added: zc.table/trunk/src/zc/__init__.py
===================================================================
--- zc.table/trunk/src/zc/__init__.py	2006-04-24 13:57:46 UTC (rev 67567)
+++ zc.table/trunk/src/zc/__init__.py	2006-04-24 14:33:17 UTC (rev 67568)
@@ -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