30 lines
742 B
TOML
30 lines
742 B
TOML
[project]
|
|
name = "terrain-monitor-backend"
|
|
version = "0.1.0"
|
|
description = "Sistema di monitoraggio terreni con notifiche push per allarmi real-time"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"sqlalchemy>=2.0.35",
|
|
"alembic>=1.13.3",
|
|
"psycopg2-binary>=2.9.10",
|
|
"pydantic[email]>=2.9.2",
|
|
"pydantic-settings>=2.6.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"passlib[bcrypt]>=1.7.4",
|
|
"bcrypt>=4.0.0,<5.0.0",
|
|
"python-multipart>=0.0.12",
|
|
"paho-mqtt>=2.1.0",
|
|
"firebase-admin>=6.5.0",
|
|
"python-dotenv>=1.0.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.3",
|
|
"pytest-asyncio>=0.24.0",
|
|
"httpx>=0.27.2",
|
|
]
|