40 lines
855 B
TOML
40 lines
855 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",
|
|
"bcrypt>=4.0",
|
|
"cryptography>=43",
|
|
"psycopg[binary,async]>=3.2",
|
|
"python-multipart>=0.0.20",
|
|
"httpx>=0.28",
|
|
"asyncssh>=2.18",
|
|
]
|
|
|
|
[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"]
|