Files
saladeaula.digital/courses-events/pyproject.toml
2025-07-02 19:50:53 -03:00

34 lines
523 B
TOML

[project]
name = "courses-events"
version = "0.1.0"
description = ""
readme = ""
requires-python = ">=3.13"
dependencies = [
"layercake",
]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.1",
]
[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" }