initial commit
This commit is contained in:
24
backend/pyproject.toml
Normal file
24
backend/pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user