This commit is contained in:
Redsandy
2026-03-14 18:48:57 +03:00
parent 1d1350fc13
commit 3ea4fb4771
40 changed files with 2150 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "geozoner-back"
version = "0.1.0"
description = "GeoZoner backend — territorial fitness tracker API"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"sqlmodel>=0.0.22",
"python-dotenv>=1.0.0",
"python-multipart>=0.0.18",
"pyjwt>=2.10.0",
"pwdlib[argon2]>=0.3.0",
"httpx>=0.28.0",
"shapely>=2.0.0",
"rdp>=0.8",
"geojson>=3.1.0",
]