-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
115 lines (108 loc) · 3.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import os
from setuptools import find_packages
from setuptools import setup
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()
long_description = (
read('README.rst')
+ '\n' +
read('CHANGES.rst')
)
tests_require = [
'zope.app.wsgi[test]',
'zope.configuration',
'zope.testbrowser',
'zope.testing',
'zope.testrunner',
]
setup(
name='grok',
version='5.2.dev0',
author='Grok Team',
author_email='zope-dev@zope.dev',
url='https://github.com/zopefoundation/grok',
description='Grok: Now even cavemen can use Zope 3!',
long_description=long_description,
license='ZPL',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope :: 3',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
python_requires='>=3.8',
install_requires=[
'grokcore.annotation >= 1.6',
'grokcore.catalog >= 2.1',
'grokcore.chameleon >= 1.0',
'grokcore.component >= 3.1',
'grokcore.content >= 1.2',
'grokcore.formlib >= 1.10',
'grokcore.layout >= 1.6',
'grokcore.message',
'grokcore.security[role] >= 1.6',
'grokcore.site >= 1.7',
'grokcore.traverser >= 1.1',
'grokcore.view [security_publication]',
'grokcore.view >= 2.8',
'grokcore.viewlet >= 1.10',
'martian >= 1.2',
'pytz',
'setuptools',
'z3c.autoinclude',
'zc.catalog',
'ZODB',
'zope.annotation',
'zope.app.appsetup',
'zope.app.publication',
'zope.app.wsgi',
'zope.browserpage',
'zope.catalog',
'zope.component',
'zope.container',
'zope.contentprovider',
'zope.errorview [browser]',
'zope.event',
'zope.exceptions',
'zope.generations',
'zope.i18n',
'zope.i18nmessageid',
'zope.interface',
'zope.intid',
'zope.keyreference',
'zope.lifecycleevent',
'zope.location',
'zope.login',
'zope.password',
'zope.principalregistry',
'zope.publisher',
'zope.schema',
'zope.security',
'zope.securitypolicy',
'zope.site',
'zope.traversing',
],
extras_require={
'test': tests_require,
'docs': ['Sphinx']
},
)