[Checkins] SVN: Products.QueueCatalog/trunk/setup.py added

Andreas Jung andreas at andreas-jung.com
Tue May 13 06:50:19 EDT 2008


Log message for revision 86695:
  added
  

Changed:
  A   Products.QueueCatalog/trunk/setup.py

-=-
Added: Products.QueueCatalog/trunk/setup.py
===================================================================
--- Products.QueueCatalog/trunk/setup.py	                        (rev 0)
+++ Products.QueueCatalog/trunk/setup.py	2008-05-13 10:50:19 UTC (rev 86695)
@@ -0,0 +1,31 @@
+
+import os
+from setuptools import setup, find_packages
+
+
+CLASSIFIERS = [
+    'Programming Language :: Python',
+    'Framework :: Zope2',
+]
+
+version = '1.5'
+
+setup(name='Products.QueueCatalog',
+      version=version,
+      license='ZPL (see LICENSE.txt)',
+      author='Christian Theune',
+      author_email='ct at gocept.com',
+      maintainer='Christian Theune',
+      maintainer_email='ct at gocept.com',
+      classifiers=CLASSIFIERS,
+      keywords='Zope2 Indexing Catalog Queue',
+      url='http://www.zope.org/Members/ctheune/QueueCatalog',
+      description='QueueCatalog - asynchronous cataloging',
+      long_description=long_description,
+      packages=['Products', 'Products.QueueCatalog'],
+      include_package_data = True,
+      zip_safe=False,
+      install_requires=['setuptools'],
+      namespace_packages=['Products'],
+
+      )



More information about the Checkins mailing list