-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
62 lines (57 loc) · 2.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
##########################################################################
# SQLAlchemyDA
# (C) 2008, ZOPYX Ltd & Co. KG, Tuebingen, Germany
##########################################################################
from setuptools import find_packages
from setuptools import setup
readme_file = 'README.rst'
changes_file = 'CHANGES.rst'
desc = open(readme_file).read().strip()
changes = open(changes_file).read().strip()
long_description = desc + "\n\nCHANGES\n=======\n\n" + changes
setup(name='Products.SQLAlchemyDA',
version='3.0.dev0',
url='https://github.com/zopefoundation/Products.SQLAlchemyDA',
project_urls={
'Issue Tracker': ('https://github.com/zopefoundation/'
'Products.SQLAlchemyDA/issues'),
'Sources': 'https://github.com/zopefoundation/Products.SQLAlchemyDA',
},
license='ZPL 2.1',
author='Andreas Jung',
author_email='[email protected]',
maintainer='Zope Foundation and Contributors',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Framework :: Zope',
'Framework :: Zope :: 5',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='Zope Database adapter SQLAlchemy',
description='A generic database adapter for Zope',
long_description=long_description,
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
python_requires='>=3.8',
install_requires=[
'setuptools',
'SQLAlchemy',
'z3c.sqlalchemy >1.5.1',
'Products.ZSQLMethods'],
extras_require={'test': ['testfixtures']},
namespace_packages=['Products'],
)