This commit is contained in:
2025-08-05 21:14:09 -03:00
parent 5c57da7ecb
commit f96ad67eeb
27 changed files with 1960 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
[project]
name = "auth"
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",
]
[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" }