[Checkins] SVN: z3c.zalchemy/trunk/ - merged buildout branch
Christian Theune
ct at gocept.com
Wed Feb 28 20:16:14 EST 2007
Log message for revision 72932:
- merged buildout branch
Changed:
_U z3c.zalchemy/trunk/
A z3c.zalchemy/trunk/bootstrap.py
A z3c.zalchemy/trunk/buildout.cfg
U z3c.zalchemy/trunk/setup.py
-=-
Property changes on: z3c.zalchemy/trunk
___________________________________________________________________
Name: svn:ignore
- build
dist
+ build
develop-eggs
eggs
bin
parts
.installed.cfg
dist
Copied: z3c.zalchemy/trunk/bootstrap.py (from rev 72931, z3c.zalchemy/branches/buildoutify/bootstrap.py)
Copied: z3c.zalchemy/trunk/buildout.cfg (from rev 72931, z3c.zalchemy/branches/buildoutify/buildout.cfg)
Modified: z3c.zalchemy/trunk/setup.py
===================================================================
--- z3c.zalchemy/trunk/setup.py 2007-03-01 01:13:57 UTC (rev 72931)
+++ z3c.zalchemy/trunk/setup.py 2007-03-01 01:16:12 UTC (rev 72932)
@@ -1,21 +1,22 @@
from setuptools import setup, find_packages
-setup(
- name='z3c.zalchemy',
- version='trunk',
- author='ROBOTECH???',
- url='https://svn.zope.org.repos/main',
- description="""\
-SQLAlchemy integration into Zope 3
-""",
- packages=find_packages('src'),
- package_dir = {'': 'src'},
- include_package_data = True,
- zip_safe=False,
- license='ZPT 2.1',
- install_requires=['setuptools',
- 'SQLAlchemy'],
-)
+setup(name='z3c.zalchemy',
+ version='trunk',
+ author='Juergen Kartnaller',
+ url='https://svn.zope.org.repos/main',
+ description="""SQLAlchemy integration into Zope 3""",
+ license='ZPL 2.1',
-
-
+ packages=find_packages('src'),
+ package_dir = {'': 'src'},
+ include_package_data = True,
+ zip_safe=False,
+ install_requires=['setuptools',
+ 'SQLAlchemy',
+ 'ZODB3',
+ 'zope.component',
+ 'zope.interface',
+ 'zope.schema',
+ 'zope.app',
+ ],
+ extras_require = dict(test=['pysqlite']))
More information about the Checkins
mailing list