Files
hla_framework_bd/services/000-master/current/app/pyproject.toml
T
Benjamin Labrecque a9902d47c5
Deploy bin / deploy (push) Successful in 8s
Deploy, build and restart MASTER / deploy (push) Successful in 10s
Deploy agebd python package / deploy (push) Successful in 2s
chore: fix agebd relative path
2026-07-07 09:33:13 +02:00

35 lines
641 B
TOML

[project]
name = "agebd-master"
version = "0.1.0"
description = "AGEBD-MASTER Service"
requires-python = ">=3.9"
dependencies = [
"agebd", # TODO: package in gitea?
"pyyaml>=6.0.3",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"ruff>=0.15.20",
]
[tool.uv.sources]
# Path is relative to where agebd package is deployed on hla
# machines (see CI/CD in .gitea/workflows)
agebd = { path = "../../../../packages/agebd", editable = true }
[tool.ruff]
include = [
"src/**/*.py",
]
line-length = 100
[tool.ruff.lint]
# use isort to sort imports
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["agebd"]