api with oauth2 provider

This commit is contained in:
2025-09-25 23:17:28 -03:00
parent a3e13a113c
commit 187a064687
11 changed files with 1580 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
[project]
name = "api-saladeaula-digital"
version = "0.1.0"
description = ""
readme = ""
requires-python = ">=3.13"
dependencies = ["layercake"]
[dependency-groups]
dev = [
"boto3-stubs[cognito-idp,essential]>=1.38.26",
"jsonlines>=4.0.0",
"psycopg2-binary>=2.9.10",
"pycouchdb>=1.16.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.1",
"sqlite-utils>=3.38",
"tqdm>=4.67.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" }