-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
48 lines (43 loc) · 1.09 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
[tool.poetry]
name = "msys2-web"
version = "0.1.0"
description = ""
authors = ["Christoph Reiter <[email protected]>"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
httpx = {extras = ["http2"], version = "^0.27.0"}
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.31.0"}
jinja2 = "^3.1.2"
fastapi-etag = "^0.4.0"
gunicorn = "^23.0.0"
aiolimiter = "^1.0.0-beta.1"
pydantic = "^2.0.3"
zstandard = "^0.23.0"
MarkupSafe = "^2.1.1"
uvicorn-worker = "^0.2.0"
[tool.poetry.group.dev.dependencies]
reuse = "^4.0.3"
mypy = "1.11.2"
flake8 = "^7.0.0"
pytest = "^8.0.0"
requests = "^2.23.0"
respx = "^0.21.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
warn_no_return = true
warn_return_any = true
warn_unused_ignores = true
strict_equality = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
norecursedirs = ["frontend"]