Files
hla_framework_bd/services/nturns/current/app/pyproject.toml
T
Benjamin Labrecque ff6cede146
Deploy and restart modified services / deploy (push) Successful in 23s
Deploy bin / deploy (push) Successful in 1s
fix: python apps
2026-07-15 14:13:50 +02:00

50 lines
860 B
TOML

[project]
name = "agebd-nturns"
version = "0.1.0"
description = "AGEBD-NTURNS Service"
requires-python = ">=3.9"
dependencies = [
"agebd",
"numpy>=2.0.2",
"scipy>=1.13.1",
]
[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 }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = 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"]