Files
hla_framework_bd/scripts/pyproject.toml

46 lines
751 B
TOML

[project]
name = "agebd-scripts"
version = "0.1.0"
description = "Scripts for SLS HLA Framework"
requires-python = "==3.10.*"
authors = [
{ name = "Benjamin Labrecque" }
]
dependencies = [
"agebd",
]
# Dev dependencies
[dependency-groups]
dev = [
"ipython>=8.39.0",
"pyright>=1.1.410",
"pytest>=8.4.2",
"pytest-env>=1.7.0",
"pytest-mock>=3.15.1",
"ruff>=0.15.19",
]
[tool.uv.sources]
agebd = { path = "../packages/agebd", editable = true }
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
include = [
"ci/**/*.py",
"tests/**/*.py",
]
line-length = 100
[tool.ruff.lint]
extend-select = [
# use isort to sort imports
"I",
# remove unused imports
# "F401",
]