Files
OrbitWard/backend/pyproject.toml
T
2026-05-22 17:36:40 -06:00

33 lines
681 B
TOML

[project]
name = "infrapulse-backend"
version = "0.1.0"
description = "InfraPulse FastAPI backend"
requires-python = ">=3.12"
dependencies = [
"alembic>=1.13.3",
"cryptography>=48.0.0",
"email-validator>=2.2.0",
"fastapi>=0.115.0",
"httpx>=0.28.0",
"passlib>=1.7.4",
"psycopg[binary]>=3.2.0",
"pydantic-settings>=2.5.2",
"python-jose[cryptography]>=3.3.0",
"python-multipart>=0.0.12",
"sqlalchemy>=2.0.35",
"uvicorn[standard]>=0.30.6",
]
[project.optional-dependencies]
test = [
"pytest>=8.3.3",
"httpx>=0.27.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"