-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["asu"]
[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.135.3",
"pynacl>=1.6.0",
"podman>=5.8.0",
"redis>=7.4.0",
"pydantic-settings>=2.12.0",
"rq>=2.7.0",
"uvicorn>=0.37.0",
"fastapi-cache2>=0.2.2",
"httpx>=0.28.1",
"podman-compose>=1.5.0",
"boto3>=1.42.89",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.10",
"coverage>=7.13.5",
"isort>=8.0.1",
"fakeredis>=2.35.1",
"pytest-httpserver>=1.1.5",
]
[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"
]