-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 946 Bytes
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
[project]
name = "asu"
version = "0.0.0"
description = "A firmware on demand server for OpenWrt based distributions"
authors = [
{name = "Paul Spooren", email = "mail@aparcar.org"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.119.0",
"pynacl>=1.6.0",
"podman>=5.6.0",
"redis>=6.4.0",
"pydantic-settings>=2.12.0",
"rq>=2.6.0",
"uvicorn>=0.37.0",
"fastapi-cache2>=0.2.2",
"httpx>=0.28.1",
"podman-compose>=1.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.2",
"ruff>=0.14.9",
"coverage>=7.13.0",
"isort>=7.0.0",
"fakeredis>=2.32.0",
"pytest-httpserver>=1.1.3",
]
[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"
]