add http-api

This commit is contained in:
2025-03-20 17:48:37 -03:00
parent a41f90f3a9
commit 85cbc9269c
25 changed files with 1726 additions and 0 deletions

19
http-api/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "http-api"
version = "0.1.0"
description = ""
readme = ""
requires-python = ">=3.12"
dependencies = ["layercake"]
[dependency-groups]
dev = ["pytest>=8.3.4", "pytest-cov>=6.0.0", "ruff>=0.9.1"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report html -v"
[tool.ruff.format]
quote-style = "single"
[tool.uv.sources]
layercake = { path = "../layercake" }