Files
hla_framework_bd/packages/agebd/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

36 lines
516 B
TOML

[project]
name = "agebd"
version = "0.1.0"
description = "SLS HLA Framework"
requires-python = ">=3.9"
dependencies = [
"typer>=0.23.2",
]
# Dev dependencies
[dependency-groups]
dev = [
"pyright>=1.1.410",
"pytest>=8.4.2",
"ruff>=0.15.19",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.ruff]
include = [
"src/**/*.py",
"tests/**/*.py",
]
line-length = 100
[tool.ruff.lint]
# use isort to sort imports
extend-select = ["I"]