-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (62 loc) · 2.39 KB
/
setup.py
File metadata and controls
72 lines (62 loc) · 2.39 KB
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
63
64
65
66
67
68
69
70
71
72
##########################################################################
# z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
#
# (C) Zope Foundation and Contributor
# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
##########################################################################
import os
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
def _read_file(filename):
with open(os.path.join(HERE, filename)) as f:
return f.read()
README = _read_file('README.rst')
CHANGES = _read_file('CHANGES.rst')
version = '3.1.dev0'
setup(name='z3c.sqlalchemy',
version=version,
url='https://github.com/zopefoundation/z3c.sqlalchemy',
project_urls={
'Issue Tracker': ('https://github.com/zopefoundation/'
'z3c.sqlalchemy/issues'),
'Sources': 'https://github.com/zopefoundation/z3c.sqlalchemy',
},
license='ZPL-2.1',
author='Andreas Jung',
author_email='info@zopyx.com',
maintainer='Zope Foundation and Contributors',
maintainer_email='zope-dev@zope.dev',
description='A SQLAlchemy wrapper for Zope',
long_description='\n\n'.join([README, CHANGES]),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Framework :: Zope',
'Framework :: Zope :: 3',
'Framework :: Zope :: 4',
'Framework :: Zope :: 5',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
include_package_data=True,
zip_safe=False,
python_requires='>=3.9',
install_requires=[
'setuptools',
'SQLAlchemy>=1.4',
'zope.sqlalchemy>=1.2.0',
'zope.component',
'zope.interface',
'zope.testing',
'zope.schema',
],
extras_require=dict(test=['zope.testing']))