-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.22 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
# Host-side Python environment for the rpi5-iot-gw project.
#
# This file does NOT define a pip-installable package. Its purpose is
# to give `uv` a reproducible runtime + dev environment for the FIT
# signing tool and the host-side tool test suites (FIT signing under
# scripts/fit-signing/, sbom-cve report readers under scripts/sbom-cve/).
# The sbom-cve scripts are themselves stdlib-only; only their pytest suite
# uses this venv. Yocto/BitBake builds do not depend on uv or on this venv.
#
# Operator signing targets run through `uv run`; direct invocations of
# scripts/fit-signing/sign_fit.py re-exec under .venv when needed.
#
# Refresh the lockfile with `make tools-venv` (or `uv sync`). Bump deps
# via `uv lock --upgrade` then re-run `uv sync`.
[project]
name = "rpi5-iot-gw-host-tools"
version = "0.1.0"
description = "Host-side FIT signing tooling environment. Not pip-installable."
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
]
[dependency-groups]
dev = [
"pytest>=7.0",
]
[tool.pytest.ini_options]
testpaths = ["scripts/fit-signing/tests", "scripts/sbom-cve/tests"]
addopts = ["-ra"]
[tool.uv]
# Keep the venv out of the source tree; uv default is `.venv` which
# .gitignore already excludes.
package = false