Files
hla_framework_bd/services/000-master/app/pyproject.toml
T
Benjamin Labrecque d16b8bc201
Create a new service / deploy (push) Successful in 1s
chore: restructure service
2026-07-01 16:04:11 +02:00

33 lines
618 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]
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"]