Files
hla_framework_bd/services/nturns/current/app/pyproject.toml
T
labrec_bandBenjamin Labrecque 13abb68f96 Feature/add service nturns (#2)
Migrate NTURNS

---------

Co-authored-by: Benjamin Labrecque <labrecque.benji@gmail.com>
Reviewed-on: #2
2026-07-14 09:35:10 +02:00

36 lines
699 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 = [
"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"]