initial commit

This commit is contained in:
gulimabr
2026-01-28 15:34:58 -03:00
commit 08825bf817
23 changed files with 5251 additions and 0 deletions

24
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[tool.poetry]
name = "termsearch-backend"
version = "0.1.0"
description = "FastAPI backend for TermSearch"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.111.0"
uvicorn = { extras = ["standard"], version = "^0.30.0" }
httpx = "^0.27.0"
selectolax = "^0.3.21"
tenacity = "^8.3.0"
structlog = "^24.4.0"
asgi-correlation-id = "^4.3.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"