Files
hla_framework_bd/packages/agebd/pyproject.toml
T
2026-07-16 14:27:29 +02:00

37 lines
539 B
TOML

[project]
name = "agebd"
version = "0.1.0"
description = "SLS HLA Framework"
requires-python = "==3.10.*"
dependencies = [
"h5py>=3.16.0",
"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"]