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

Andreas Jung andreas at andreas-jung.com
Wed Mar 12 07:05:13 EDT 2008


Log message for revision 84606:
  added
  

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

-=-
Added: Products.SQLAlchemyDA/trunk/setup.py
===================================================================
--- Products.SQLAlchemyDA/trunk/setup.py	                        (rev 0)
+++ Products.SQLAlchemyDA/trunk/setup.py	2008-03-12 11:05:12 UTC (rev 84606)
@@ -0,0 +1,41 @@
+##########################################################################
+# SQLAlchemyDA
+# (C) 2008, ZOPYX Ltd & Co. KG, Tuebingen, Germany
+##########################################################################
+
+import os
+from setuptools import setup, find_packages
+
+
+CLASSIFIERS = [
+    'Programming Language :: Python',
+]
+
+version_file = os.path.join('Products', 'SQLAlchemyDA', 'version.txt')
+version = open(version_file).read().strip()
+
+readme_file= os.path.join('Products', 'SQLAlchemyDA', 'doc', 'README.txt')
+desc = open(readme_file).read().strip()
+
+long_description = desc 
+
+
+setup(name='Products.SQLAlchemyDA',
+      version=version,
+      license='ZPL (see LICENSE.txt)',
+      author='Andreas Jung',
+      author_email='info at zopyx.com',
+      maintainer='Andreas Jung',
+      maintainer_email='info at zopyx.com',
+      classifiers=CLASSIFIERS,
+      keywords='Zope2 Database adapter SQLAlchemy',
+      url='http://opensource.zopyx.com/projects/SQLAlchemyDA',
+      description='A generic database adapter for Zope 2',
+      long_description=long_description,
+      packages=['Products', 'Products.SQLAlchemyDA'],
+      include_package_data = True,
+      zip_safe=False,
+      install_requires=['setuptools', 'z3c.sqlalchemy'],
+      namespace_packages=['Products'],
+
+      )



More information about the Checkins mailing list