[Checkins] SVN: z3c.sqlalchemy/trunk/setup.py added

Andreas Jung andreas at andreas-jung.com
Sat Mar 17 10:17:40 EDT 2007


Log message for revision 73290:
  added
  

Changed:
  A   z3c.sqlalchemy/trunk/setup.py

-=-
Added: z3c.sqlalchemy/trunk/setup.py
===================================================================
--- z3c.sqlalchemy/trunk/setup.py	2007-03-17 14:05:51 UTC (rev 73289)
+++ z3c.sqlalchemy/trunk/setup.py	2007-03-17 14:17:40 UTC (rev 73290)
@@ -0,0 +1,21 @@
+from setuptools import setup, find_packages
+
+setup(name='z3c.sqlalchemy',
+      version='trunk',
+      author='Andreas Jung',
+      author_email='info at zopyx..com',
+      url='https://svn.zope.org.repos/main',
+      description="""SQLAlchemy integration into Zope 2 and Zope 3""",
+      license='ZPL 2.1',
+
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      include_package_data = True,
+      zip_safe=False,
+      install_requires=['setuptools',
+                        'SQLAlchemy',
+                        'zope.component',
+                        'zope.interface',
+                        'zope.schema',
+                       ],
+      extras_require = dict(test=['pysqlite']))



More information about the Checkins mailing list