-
Notifications
You must be signed in to change notification settings - Fork 84
/
pyproject.toml
47 lines (38 loc) · 948 Bytes
/
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
[tool.poetry]
name = "asu"
version = "0.0.0"
description = "A firmware on demand server for OpenWrt based distributions"
authors = ["Paul Spooren <mail@aparcar.org>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = { extras = ["standard"], version = "^0.115.3" }
pynacl = "^1.5.0"
requests = "^2.32.3"
podman = "^5.1.0"
redis = "^5.1.1"
pydantic-settings = "^2.6.0"
rq = "^2.0.0"
uvicorn = "^0.32.0"
fastapi-cache2 = "^0.2.2"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
ruff = "^0.7.0"
coverage = "^7.6.4"
isort = "^5.13.2"
fakeredis = "^2.25.1"
[tool.coverage.run]
dynamic_context = "test_function"
[tool.coverage.report]
precision = 1
[tool.coverage.html]
show_contexts = "true"
title = "ASU Server Regression Test Coverage"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"