-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpyproject.toml
135 lines (119 loc) · 3.11 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
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
[project]
name = 'granian'
authors = [
{ name = 'Giovanni Barillari', email = 'g@baro.dev' }
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'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 :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Programming Language :: Rust',
'Topic :: Internet :: WWW/HTTP',
]
dynamic = [
'description',
'keywords',
'license',
'readme',
'version',
]
requires-python = '>=3.9'
dependencies = [
'click>=8.0.0',
]
[project.optional-dependencies]
pname = [
'setproctitle~=1.3.3',
]
reload = [
'watchfiles>=0.21,<2',
]
rloop = [
'rloop; sys_platform != "win32"',
]
uvloop = [
'uvloop>=0.18.0; sys_platform != "win32" and platform_python_implementation == "CPython"',
]
all = ['granian[pname,reload]']
[project.urls]
Homepage = 'https://github.com/emmett-framework/granian'
Funding = 'https://github.com/sponsors/gi0baro'
Source = 'https://github.com/emmett-framework/granian'
[dependency-groups]
build = [
'maturin~=1.8',
]
lint = [
'ruff~=0.5.0',
]
test = [
'httpx~=0.25.0',
'pytest~=7.4.2',
'pytest-asyncio~=0.21.1',
'sniffio~=1.3',
'websockets~=14.2',
]
all = [
{ include-group = 'build' },
{ include-group = 'lint' },
{ include-group = 'test' },
]
[project.scripts]
granian = 'granian:cli.entrypoint'
[build-system]
requires = ['maturin>=1.8.0,<2']
build-backend = 'maturin'
[tool.maturin]
module-name = 'granian._granian'
bindings = 'pyo3'
[tool.ruff]
line-length = 120
extend-select = [
# E and F are enabled by default
'B', # flake8-bugbear
'C4', # flake8-comprehensions
'C90', # mccabe
'I', # isort
'N', # pep8-naming
'Q', # flake8-quotes
'RUF100', # ruff (unused noqa)
'S', # flake8-bandit
'W', # pycodestyle
]
extend-ignore = [
'B008', # function calls in args defaults are fine
'B009', # getattr with constants is fine
'B034', # re.split won't confuse us
'B904', # rising without from is fine
'E501', # leave line length to black
'N818', # leave to us exceptions naming
'S101', # assert is fine
'S110', # except pass is fine
]
flake8-quotes = { inline-quotes = 'single', multiline-quotes = 'double' }
mccabe = { max-complexity = 16 }
[tool.ruff.format]
quote-style = 'single'
[tool.ruff.isort]
combine-as-imports = true
lines-after-imports = 2
known-first-party = ['granian', 'tests']
[tool.ruff.per-file-ignores]
'granian/_granian.pyi' = ['I001']
'tests/**' = ['B018', 'S110', 'S501']
[tool.pytest.ini_options]
asyncio_mode = 'auto'
[tool.uv]
package = false