Files
hla_framework_bd/services/master/current/app/pyproject.toml
T
Benjamin Labrecque e1964c1d70
Deploy and restart modified services / deploy (push) Successful in 12s
Deploy bin / deploy (push) Successful in 2s
feat: restructure python app and add option to add tests for apps
2026-07-15 12:18:53 +02:00

42 lines
765 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 = [
"pyepics>=3.5.8",
"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.pytest.ini_options]
pythonpath = ["src"]
env = [
"AGEBD_ENV=local",
]
[tool.ruff]
include = [
"src/**/*.py",
"tests/**/*.py",
]
line-length = 100
[tool.ruff.lint]
# use isort to sort imports
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["agebd"]