-
-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpyproject.toml
More file actions
142 lines (126 loc) · 3.31 KB
/
pyproject.toml
File metadata and controls
142 lines (126 loc) · 3.31 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
[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',
'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',
'Programming Language :: Python :: Free Threading :: 2 - Beta',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Rust',
'Topic :: Internet :: WWW/HTTP',
]
dynamic = [
'description',
'keywords',
'license',
'readme',
'version',
]
requires-python = '>=3.10'
dependencies = [
'click>=8.1.0',
]
[project.optional-dependencies]
dotenv = [
'python-dotenv~=1.1',
]
pname = [
'setproctitle~=1.3.3',
]
reload = [
'watchfiles~=1.0',
]
rloop = [
'rloop~=0.1; sys_platform != "win32"',
]
uvloop = [
'uvloop>=0.18.0; sys_platform != "win32" and platform_python_implementation == "CPython"',
]
winloop = [
'winloop>=0.2.2; sys_platform == "win32" and platform_python_implementation == "CPython"',
]
all = ['granian[dotenv,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.11',
]
test = [
'httpx~=0.28',
'pytest~=8.3',
'pytest-asyncio~=0.26',
'sniffio~=1.3',
'websockets~=15.0',
]
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
'UP', # pyupgrade
]
extend-ignore = [
'B008', # function calls in args defaults are fine
'B009', # getattr with constants is fine
'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 = 28 }
[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