-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
98 lines (92 loc) · 2.88 KB
/
Copy pathsetup.py
File metadata and controls
98 lines (92 loc) · 2.88 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
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
from pathlib import Path
from setuptools import setup
version = "10.0.2.dev0"
install_requires = [
"zope.testing >= 3.8",
]
tests_require = [
"WebTest",
"Zope",
"zope.testbrowser",
"zope.testrunner >= 6.4",
]
zope_requires = (
[
"WebTest",
"Zope",
"zope.testbrowser",
],
)
testing_folder = Path("src", "plone", "testing")
setup(
name="plone.testing",
version=version,
description="Testing infrastructure for Zope and Plone projects.",
long_description=(
f"{(testing_folder / 'README.rst').read_text()}\n"
f"{Path('CHANGES.rst').read_text()}\n"
"Detailed documentation\n======================"
f"{(testing_folder / 'layer.rst').read_text()}\n"
f"{(testing_folder / 'zca.rst').read_text()}\n"
f"{(testing_folder / 'security.rst').read_text()}\n"
f"{(testing_folder / 'publisher.rst').read_text()}\n"
f"{(testing_folder / 'zodb.rst').read_text()}\n"
f"{(testing_folder / 'zope.rst').read_text()}\n"
f"{(testing_folder / 'zserver.rst').read_text()}\n"
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 6.2",
"Framework :: Plone :: Core",
"Framework :: Zope :: 5",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Testing",
],
keywords="plone zope testing",
author="Plone Foundation",
author_email="plone-developers@lists.sourceforge.net",
url="https://github.com/plone/plone.testing",
license="BSD",
include_package_data=True,
zip_safe=False,
python_requires=">=3.10",
install_requires=install_requires,
extras_require={
"test": tests_require,
"zodb": ["ZODB"],
"zca": [
"zope.component",
"zope.configuration",
"zope.event",
],
"security": [
"zope.security",
],
"publisher": [
"zope.browsermenu",
"zope.browserpage",
"zope.browserresource",
"zope.configuration",
"zope.publisher",
"zope.security",
],
"z2": [], # BBB
"zope": zope_requires,
"zserver": [
"ZServer",
],
},
)