utp_service/backend/pyproject.toml
2026-04-07 00:00:50 +03:00

39 lines
835 B
TOML

[project]
name = "fleet-manager"
version = "0.1.0"
description = "Centralized fleet device management service"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.30",
"alembic>=1.14",
"pydantic>=2.10",
"pydantic-settings>=2.7",
"python-jose[cryptography]>=3.3",
"passlib[bcrypt]>=1.7",
"cryptography>=43",
"psycopg[async]>=3.2",
"python-multipart>=0.0.20",
"httpx>=0.28",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.24",
"httpx>=0.28",
"pytest-cov>=6.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]