[project]
name = "service-collection-webapp-backend"
version = "0.1.0"
description = "FastAPI backend for Service Collection management webapp"
authors = [
{name = "Service Collection Team"}
]
dependencies = [
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"sqlalchemy>=2.0.23",
"alembic>=1.13.0",
"asyncpg>=0.29.0",
"aiopg>=1.4.0",
"procrastinate[sqlalchemy]>=2.8.0",
"psycopg2-binary>=2.9.7",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"python-jose[cryptography]>=3.3.0",
"python-multipart>=0.0.6",
"httpx>=0.25.2",
"structlog>=23.2.0",
"rich>=13.7.0",
"tenacity>=8.2.3",
"fastmcp>=2.0.0",
"bcrypt>=4.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-mock>=3.12.0",
"httpx>=0.25.2",
"black>=23.11.0",
"isort>=5.12.0",
"mypy>=1.7.1",
"ruff>=0.1.7",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
exclude = ["sql*"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.ruff]
line-length = 88
target-version = "py311"