-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
163 lines (143 loc) · 3.82 KB
/
Copy pathpyproject.toml
File metadata and controls
163 lines (143 loc) · 3.82 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[project]
name = "openutm-verification"
version = "0.2.1"
description = "Verification tools for Flight Blender and OpenUTM products"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"httpx>=0.27.0",
"arrow==1.3.0",
"python-dotenv==1.2.2",
"http-sfv==0.9.9",
"cryptography==46.0.7",
"jwt==1.3.1",
"http-message-signatures==0.5.0",
"redis==6.0.0",
"walrus==0.9.4",
"jwcrypto==1.5.6",
"pyproj==3.7.1",
"shapely==2.1.0",
"implicitdict==4.0.1",
"geojson==3.2.0",
"folium>=0.20.0",
"faker==9.3.1",
"pandas>=2.3.1",
"pydeck>=0.9.1",
"pythreejs>=2.4.2",
"ipywidgets>=8.1.7",
"numpy>=2.3.1",
"pillow>=11.3.0",
"earcut>=1.1.5",
"pika>=1.3.2",
"dacite>=1.9.2",
"pyyaml>=6.0.2",
"jinja2>=3.1.6",
"loguru>=0.7.2",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"websockets>=12.0",
"markdown>=3.10",
"uas-standards==4.2.0",
"allure-python-commons>=2.15.0",
"fastapi>=0.121.3",
"uvicorn[standard]>=0.38.0", # includes watchfiles for efficient reload
"bluesky-simulator==1.1.0",
"rtree==1.4.1",
"cam-track-gen @ git+https://github.com/openutm-labs/Canadian-Airspace-Models.git",
"ruamel-yaml>=0.18.6",
]
[project.scripts]
openutm-verify = "openutm_verification.run_verification:main"
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"pylint-pytest>=1.1.7",
"ruff>=0.12.10",
"ty>=0.0.1a14",
"pylint>=3.3.2",
"pytest>=8.4.1",
"pytest-asyncio>=0.24.0",
"psutil>=6.0.0",
"mypy>=1.11.2",
"types-pyyaml",
"types-redis",
"types-requests",
"pytest-cov>=7.0.0",
"arrow>=1.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/openutm_verification"]
# (artifacts configuration removed; docs are included via force-include)
[tool.hatch.build.targets.wheel.force-include]
"docs/scenarios" = "openutm_verification/docs/scenarios"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
pythonpath = [".", "src/openutm_verification"]
testpaths = ["tests"]
markers = ["asyncio: mark test as asyncio"]
[tool.coverage.run]
source = ["src/openutm_verification"]
[tool.pylint."messages control"]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"unused-import",
"useless-import-alias",
"invalid-name",
"global-statement",
]
[tool.ruff]
line-length = 150
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
# select = ["E", "F", "W", "I", "N", "D", "B", "A", "C4", "S", "Q"]
# ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "S101"]
select = [
"E",
"F",
"W",
"I",
# "UP",
]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.per-file-ignores]
# JS/HTML embedded as a Python string literal — long lines are unavoidable.
"src/openutm_verification/core/reporting/_viz_3d_template.py" = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
docstring-code-line-length = "dynamic"
[tool.codespell]
ignore-words = ".codespellignore"
quiet-level = 2
skip = ["uv.lock", "*/package-lock.json"]
[tool.pylint]
load-plugins = "pylint_pytest"
[tool.pylint.format]
max-line-length = 150
[tool.mypy]
python_version = "3.12"
# warn_return_any = true
# warn_unused_configs = true
ignore_missing_imports = true
# disallow_untyped_defs = true
# check_untyped_defs = true