-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (94 loc) · 2.71 KB
/
Copy pathpyproject.toml
File metadata and controls
101 lines (94 loc) · 2.71 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
99
100
101
[build-system]
requires = [
"setuptools >= 78.1.1,< 81",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "Products.zms"
dynamic = ["version"]
description = "ZMS6: Simplified Content Modelling"
readme = "README.rst"
license = {text = "GPL"}
authors = [
{name = "HOFFMANN+LIEBENBERG in association with SNTL Publishing, Berlin", email = "zms@sntl-publishing.com"}
]
maintainers = [
{name = "HOFFMANN+LIEBENBERG in association with SNTL Publishing, Berlin", email = "zms@sntl-publishing.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Zope :: 6",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Customer Service",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License (GPL)",
]
requires-python = ">=3.10"
dependencies = [
"docutils",
"configparser",
"requests",
"Zope[wsgi]",
"Products.GenericSetup",
"Products.MailHost",
"Products.ExternalMethod",
"Products.CMFCore",
"Products.PythonScripts",
"Products.SiteErrorLog",
"Products.StandardCacheManagers",
"Products.Sessions",
"Products.TemporaryFolder",
"zope.app.publication",
"zope.authentication",
"zope.untrustedpython",
"zope.error",
"ZopeUndo",
"Pillow",
"xmltodict",
"ruamel.yaml",
"Markdown",
"htmldiff2",
"pdfminer.six"
]
[project.optional-dependencies]
zeo = [
"ZEO",
"Products.mcdutils>=3.2",
]
dev = [
"debugpy",
"watching_testrunner",
"pytest",
"selenium",
]
[project.urls]
Homepage = "https://www.zms-publishing.com"
Repository = "https://github.com/zms-publishing/ZMS"
Download = "https://github.com/zms-publishing/ZMS"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["Products*"]
namespaces = true
[tool.setuptools.package-data]
"Products.zms" = ["**/*"]
[tool.setuptools.dynamic]
version = {attr = "Products.zms._version.__version__"}