[Checkins] SVN: z3c.zalchemy/branches/buildoutify/setup.py -
clarified author name
Christian Theune
ct at gocept.com
Wed Feb 28 20:00:23 EST 2007
Log message for revision 72929:
- clarified author name
- reindent
Changed:
U z3c.zalchemy/branches/buildoutify/setup.py
-=-
Modified: z3c.zalchemy/branches/buildoutify/setup.py
===================================================================
--- z3c.zalchemy/branches/buildoutify/setup.py 2007-03-01 00:57:43 UTC (rev 72928)
+++ z3c.zalchemy/branches/buildoutify/setup.py 2007-03-01 01:00:22 UTC (rev 72929)
@@ -1,27 +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='ZPL 2.1',
- install_requires=['setuptools',
- 'SQLAlchemy',
- 'ZODB3',
- 'zope.component',
- 'zope.interface',
- 'zope.schema',
- 'zope.app',
- ],
- extras_require = dict(
- test = []
- )
-)
+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=[]))
More information about the Checkins
mailing list