forked from zopefoundation/zope.sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.46 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os.path
from setuptools import setup, find_packages
tests_require = ['zope.testing']
setup(
name='zope.sqlalchemy',
version='0.7.4dev', # Remember to update __version__ in __init__.py
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
namespace_packages=['zope'],
test_suite='zope.sqlalchemy.tests.test_suite',
author='Laurence Rowe',
author_email='laurence@lrowe.co.uk',
url='http://pypi.python.org/pypi/zope.sqlalchemy',
description="Minimal Zope/SQLAlchemy transaction integration",
long_description=open(os.path.join('src', 'zope', 'sqlalchemy', 'README.txt')).read() + "\n\n" +
open('CHANGES.txt').read(),
license='ZPL 2.1',
keywords='zope zope3 sqlalchemy',
classifiers=[
"Framework :: Zope3",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Zope Public License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'setuptools',
'SQLAlchemy>=0.5.1',
'transaction',
'zope.interface>=3.6.0',
],
extras_require={'test': tests_require},
tests_require=tests_require,
)