25 lines
579 B
TOML
25 lines
579 B
TOML
[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"
|