Files
hla_framework_bd/cli/pyproject.toml
labrec_b 16eac5cd08
Build and Publish Site / docker (push) Successful in 4s
Feature/ioc on cicd runner (#71)
Run `ioc ...` from cicd runner, remove ansible and cli commands
Reviewed-on: #71
2026-08-25 14:34:31 +02:00

71 lines
1.2 KiB
TOML

[project]
name = "agebd-cli"
version = "0.1.0"
description = "CLI for SLS HLA Framework"
requires-python = "==3.10.*"
authors = [
{ name = "Benjamin Labrecque" }
]
dependencies = [
"agebd",
"copier>=9.10.3",
"pydantic>=2.13.4",
"pydantic-settings>=2.14.2",
"pytest-mock>=3.15.1",
"pyyaml>=6.0.3",
"typer>=0.23.2",
]
# 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 }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
agebd = "main:cli"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
package = true
[tool.pytest.ini_options]
# avoid pytest running tests inside tests/fixtures
testpaths = ["tests/tests"]
[tool.ruff]
include = [
"src/**/*.py",
"tests/**/*.py",
]
line-length = 100
[tool.ruff.lint]
extend-select = [
# use isort to sort imports
"I",
# remove unused imports
# "F401",
]
[tool.ruff.lint.isort]
known-first-party = ["agebd"]