-
-
Notifications
You must be signed in to change notification settings - Fork 987
Expand file tree
/
Copy pathpyproject.toml
More file actions
244 lines (219 loc) · 6.5 KB
/
pyproject.toml
File metadata and controls
244 lines (219 loc) · 6.5 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=77.0.3",
"cython>=3.0.8; python_implementation == 'CPython'", # Skip cython when using pypy
]
[project]
name = "falcon"
readme = {file = "README.rst", content-type = "text/x-rst"}
dynamic = ["version"]
dependencies = []
requires-python = ">=3.9"
description = "The ultra-reliable, fast ASGI+WSGI framework for building data plane APIs at scale."
authors = [
{name = "Kurt Griffiths", email = "mail@kgriffs.com"},
]
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"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 :: 3.14",
"Programming Language :: Python :: Free Threading",
"Programming Language :: Python :: Free Threading :: 2 - Beta",
"Programming Language :: Cython",
"Typing :: Typed",
]
keywords = [
"asgi",
"wsgi",
"web",
"api",
"framework",
"rest",
"http",
"cloud",
]
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
falcon-bench = "falcon.cmd.bench:main"
falcon-inspect-app = "falcon.cmd.inspect_app:main"
falcon-print-routes = "falcon.cmd.inspect_app:route_main"
[project.urls]
Homepage = "https://falconframework.org"
Documentation = "https://falcon.readthedocs.io/en/stable/"
"Release Notes" = "https://falcon.readthedocs.io/en/stable/changes/"
"Source" = "https://github.com/falconry/falcon"
"Issue Tracker" = "https://github.com/falconry/falcon/issues"
Funding = "https://opencollective.com/falcon"
Chat = "https://gitter.im/falconry/user"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "falcon.version.__version__"}
[tool.setuptools.packages.find]
include = ["falcon*"]
[tool.mypy]
exclude = [
"falcon/bench",
"falcon/cmd",
]
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
extra_checks = true
strict_bytes = true
strict_equality = true
warn_unused_configs = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = [
"cbor2",
"cython",
"daphne",
"gunicorn",
"hypercorn",
"meinheld",
"msgpack",
"mujson",
"pyximport",
"testtools",
"uvicorn"
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
# Pure Cython modules
module = [
"falcon.cyutil.misc",
"falcon.cyutil.reader",
"falcon.cyutil.uri"
]
ignore_missing_imports = true
[tool.towncrier]
package = "falcon"
package_dir = ""
filename = "docs/changes/4.3.0.rst"
directory = "docs/_newsfragments"
issue_format = "`#{issue} <https://github.com/falconry/falcon/issues/{issue}>`__"
# TODO(vytas): title_format = false seems to have no effect in towncrier==21.3.0.
# For now, we just have to remember to check the rendered changelog, and,
# if needed, remove the unwanted auto-generated title.
# See also: https://github.com/twisted/towncrier/issues/345.
title_format = false
[[tool.towncrier.type]]
directory = "breakingchange"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "newandimproved"
name = "New & Improved"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Misc"
showcontent = true
[tool.black]
# this is kept to avoid reformatting all the code if one were to
# inadvertently run black on the project
target-version = ["py39"]
skip-string-normalization = true
line-length = 88
[tool.blue]
# NOTE(vytas): Before switching to Ruff, Falcon used the Blue formatter.
# With the below settings, accidentally running blue should yield
# only minor cosmetic changes in a handful of files.
target-version = ["py39"]
line-length = 88
[tool.ruff]
target-version = "py39"
format.quote-style = "single"
line-length = 88
builtins = [
"ignore",
"attr",
"defined",
]
exclude = [
".ecosystem",
".eggs",
".git",
".tox",
".venv",
"build",
"dist",
"falcon/bench/nuts",
]
[tool.ruff.lint]
select = [
"C9",
"E",
"F",
"W",
"I",
"FA",
"UP",
]
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint.per-file-ignores]
"examples/*" = ["FA"]
# TODO(vytas): We do want to migrate to f-strings over time, however the
# changes need to be carefully inspected and benchmarked where relevant.
# (The tests and examples have already been automatically converted.)
"falcon/*" = ["UP030", "UP031", "UP032"]
[tool.ruff.lint.isort]
case-sensitive = false
force-single-line = true
order-by-type = false
single-line-exclusions = [
"typing"
]
force-sort-within-sections = true
known-local-folder = ["asgilook", "look"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:Unknown REQUEST_METHOD. '(CONNECT|DELETE|GET|HEAD|OPTIONS|PATCH|POST|PUT|TRACE|CHECKIN|CHECKOUT|COPY|LOCK|MKCOL|MOVE|PROPFIND|PROPPATCH|REPORT|UNCHECKIN|UNLOCK|UPDATE|VERSION-CONTROL)':wsgiref.validate.WSGIWarning",
"ignore:Unknown REQUEST_METHOD. '(FOO|BAR|BREW|SETECASTRONOMY)':wsgiref.validate.WSGIWarning",
"ignore:\"@coroutine\" decorator is deprecated:DeprecationWarning",
"ignore:Using or importing the ABCs:DeprecationWarning",
"ignore:cannot collect test class 'TestClient':pytest.PytestCollectionWarning",
"ignore:inspect.getargspec\\(\\) is deprecated:DeprecationWarning",
"ignore:path is deprecated\\. Use files\\(\\) instead:DeprecationWarning",
"ignore:This process \\(.+\\) is multi-threaded",
]
markers = [
"slow: mark Falcon tests as slower (potentially taking more than ~500ms).",
]
testpaths = [
"tests"
]
[tool.cibuildwheel]
build-frontend = "build"
test-requires = ["-r requirements/cibwtest"]
test-command = "pytest {project}/tests"