Files
hla_framework_bd/services/000-master/app/pyproject.toml
T
Benjamin Labrecque 47c6884c66
Deploy bin / deploy (push) Successful in 3s
Deploy, build and restart MASTER / deploy (push) Successful in 12s
Deploy agebd python package / deploy (push) Successful in 2s
chore: deploy script for all services
2026-07-07 08:48:40 +02:00

35 lines
726 B
TOML

[project]
name = "agebd-master"
version = "0.1.0"
description = "AGEBD-MASTER Service"
requires-python = ">=3.9"
dependencies = [
"agebd==1.2.0", # TODO: how to push package to gitea?
"pyyaml>=6.0.3",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"ruff>=0.15.20",
]
# This tells uv where to look for 'agebd' during LOCAL dev work
[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"]