36 lines
614 B
TOML
36 lines
614 B
TOML
[project]
|
|
name = "id-saladeaula-digital"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = ""
|
|
requires-python = ">=3.13"
|
|
dependencies = ["layercake"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"jsonlines>=4.0.0",
|
|
"pytest>=8.4.1",
|
|
"ruff>=0.12.1",
|
|
"pytest-cov>=6.2.1",
|
|
"boto3-stubs[essential]>=1.40.44",
|
|
]
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["app/"]
|
|
addopts = "--cov --cov-report html -v"
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
src = ["app"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "single"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I"]
|
|
|
|
|
|
[tool.uv.sources]
|
|
layercake = { path = "../layercake" }
|