-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (50 loc) · 1.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
[tool.poetry]
name = "monitored_ioloop"
version = "0.0.14"
description = ""
authors = ["gnir <[email protected]>"]
readme = "README.md"
packages = [
{include = "monitored_ioloop"},
{include = "monitored_ioloop/py.typed"},
]
[tool.poetry.dependencies]
python = "^3.9"
uvloop = { version ="^0.19.0", optional = true }
fastapi = { version ="^0.115.7", optional = true }
wrapt = "^1.17.2"
[tool.poetry.extras]
uvloop = ["uvloop"]
fastapi = ["fastapi"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ipython = { version="^8.21.0", python=">=3.10" }
requests = "^2.31.0"
ipdb = "^0.13.13"
[tool.poetry.group.code_quality]
optional = true
[tool.poetry.group.code_quality.dependencies]
mypy = "^1.10.1"
ruff = "^0.5.1"
pytest = "^8.0.1"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pytest-repeat = "^0.9.3"
httpx = "^0.27.0"
[tool.poetry.group.stress_test]
optional = true
[tool.poetry.group.stress_test.dependencies]
fastapi = "^0.115.7"
uvicorn = "^0.27.1"
click = "^8.1.7"
locust = "^2.23.1"
[tool.poetry.group.examples]
optional = true
[tool.poetry.group.examples.dependencies]
fastapi = "^0.115.7"
prometheus-client = "^0.20.0"
httpx = "^0.27.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"