30 lines
547 B
TOML
30 lines
547 B
TOML
[project]
|
|
name = "agebd-master"
|
|
version = "0.1.0"
|
|
description = "AGEBD-MASTER Service"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"agebd==1.2.0", # TODO: do we have a private pypi repository
|
|
"pyyaml>=6.0.3",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.20",
|
|
]
|
|
|
|
# This tells uv where to look for 'agebd' during LOCAL dev work
|
|
[tool.uv.sources]
|
|
agebd = { path = "../../packages/agebd", editable = true }
|
|
|
|
[tool.ruff]
|
|
include = [
|
|
"app/**/*.py",
|
|
]
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
# use isort to sort imports
|
|
extend-select = ["I"]
|
|
|