-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
94 lines (84 loc) · 2.25 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=47",
]
[project]
name = "updraft"
readme = "README.md"
dynamic = ["version"]
dependencies = [
"falcon >= 3.1.0",
]
requires-python = ">=3.8"
description = "Python WSGI and ASGI development server, optimized for API development and command-line usage."
authors = [
{name = "Clara Bennett", email="[email protected]"},
{name = "Kurt Griffiths", email = "[email protected]"},
]
maintainers = [
{name = "Vytautas Liuolia", email = "[email protected]"},
]
license = {text = "Apache 2.0"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"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",
]
keywords = [
"asgi",
"wsgi",
]
[project.urls]
"Homepage" = "https://github.com/falconry/updraft"
"Funding" = "https://opencollective.com/falcon"
"Chat" = "https://gitter.im/falconry/user"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "updraft.version.__version__"}
[tool.setuptools.packages.find]
exclude = ["tests"]
[tool.ruff]
target-version = "py38"
format.quote-style = "single"
line-length = 79
[tool.ruff.lint]
select = [
"C9",
"E",
"F",
"W",
"I"
]
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.lint.isort]
case-sensitive = false
force-single-line = true
order-by-type = false
single-line-exclusions = [
"typing",
]
force-sort-within-sections = true
[tool.pytest]
testpaths = [
"tests",
]