forked from interuss/monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (84 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
90 lines (84 loc) · 1.51 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "monitoring"
version = "0.1.0"
description = "Monitoring framework to test UAS Service Suppliers"
readme = "README.md"
requires-python = "==3.13.5"
dependencies = [
"aiohttp",
"arrow",
"bc-jsonpath-ng",
"cryptography",
"deprecation",
"faker",
"flask",
"flask-login",
"geojson",
"gevent",
"google-auth",
"graphviz",
"gunicorn",
"implicitdict",
"jsonnet",
"jsonschema",
"jwcrypto",
"kubernetes",
"locust",
"loguru",
"lxml",
"marko",
"numpy",
"oauthlib",
"pem",
"pip-tools",
"psycopg[binary]",
"pvlib",
"pyjwt",
"pykml",
"pyopenssl",
"pyproj",
"pyyaml",
"requests",
"s2sphere",
"scipy",
"shapely",
"structlog",
"termcolor",
"testcontainers",
"uas-standards",
"uuid6",
]
[dependency-groups]
dev = [
"basedpyright>=1.31.1",
"pytest",
"pytest-mock",
"ruff",
"types-lxml>=2025.8.25",
]
[tool.uv]
default-groups = []
[tool.ruff]
target-version = "py313"
# Default + isort + pyupgrade
lint.select = [
"E4", "E7", "E9", "F", "I", "UP"
]
extend-exclude = [
"interfaces/*",
"monitoring/prober/output/*",
"monitoring/mock_uss/output/*",
"monitoring/uss_qualifier/output/*",
]
line-length = 88
[tool.basedpyright]
typeCheckingMode = "standard"
failOnWarnings = true
exclude = [
"**/__pycache__",
"**/.*",
"interfaces/*",
"monitoring/prober/output/*",
"monitoring/mock_uss/output/*",
"monitoring/uss_qualifier/output/*",
]