-
-
Notifications
You must be signed in to change notification settings - Fork 365
Expand file tree
/
Copy pathpyproject.toml
More file actions
125 lines (116 loc) · 3.18 KB
/
pyproject.toml
File metadata and controls
125 lines (116 loc) · 3.18 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = [
# Essentials
"setuptools >= 61.2",
# Plugins
"setuptools-scm >= 7.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "CherryPy"
description = "Object-Oriented HTTP framework"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Framework :: CherryPy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
requires-python = ">= 3.9"
dependencies = [
"cheroot >= 8.2.1",
"portend >= 2.1.1",
"more_itertools",
"filelock",
"jaraco.collections",
# pywin32 disabled while a build is unavailable. Ref #1920.
'pywin32 >= 227; sys_platform == "win32" and implementation_name == "cpython" and python_version < "3.10"',
]
dynamic = [
"version",
]
[[project.authors]]
name = "CherryPy Team"
email = "[email protected]"
[project.urls]
Homepage = "https://cherrypy.dev"
"Chat: Matrix" = "https://matrix.to/#/#cherrypy-space:matrix.org"
"CI: GitHub" = "https://github.com/cherrypy/cherrypy/actions"
"Docs: RTD" = "https://docs.cherrypy.dev"
"GitHub: issues" = "https://github.com/cherrypy/cherrypy/issues"
"GitHub: repo" = "https://github.com/cherrypy/cherrypy"
"Tidelift: funding" = "https://tidelift.com/subscription/pkg/pypi-cherrypy?utm_source=pypi-cherrypy&utm_medium=referral&utm_campaign=pypi"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.optional-dependencies]
docs = [
"sphinx",
"docutils",
"alabaster",
"sphinxcontrib-apidoc >= 0.3.0",
"rst.linker >= 1.11",
"jaraco.packaging >= 3.2",
]
json = [
"simplejson",
]
routes_dispatcher = [
"routes >= 2.3.1",
]
ssl = [
"pyOpenSSL",
]
testing = [
"objgraph", # cherrypy.lib.gctools
"pytest >= 5.3.5",
"pytest-cov",
"pytest-forked",
"pytest-rerunfailures",
"pytest-sugar",
"path",
"requests_toolbelt",
"pytest-services >= 2",
"setuptools",
]
memcached_session = [
# Enables memcached session support via `cherrypy[memcached_session]`
"python-memcached >= 1.58",
]
xcgi = [
"flup",
]
[project.scripts]
cherryd = "cherrypy.__main__:run"
[tool.setuptools]
license-files = [
"LICENSE.md",
]
packages = [
"cherrypy",
"cherrypy.lib",
"cherrypy.tutorial",
"cherrypy.test",
"cherrypy.process",
"cherrypy.scaffold",
]
[tool.setuptools_scm]