arbret/backend/pyproject.toml

33 lines
621 B
TOML
Raw Normal View History

2025-12-18 21:37:28 +01:00
[project]
name = "backend"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.6",
"uvicorn>=0.34.0",
2025-12-18 21:48:41 +01:00
"sqlalchemy[asyncio]>=2.0.36",
"asyncpg>=0.30.0",
2025-12-18 22:08:31 +01:00
"bcrypt>=4.0.0",
"python-jose[cryptography]>=3.3.0",
"email-validator>=2.0.0",
2025-12-19 10:12:55 +01:00
"bech32>=1.2.0",
2025-12-18 21:48:41 +01:00
]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.0",
"httpx>=0.28.1",
"aiosqlite>=0.20.0",
2025-12-19 00:12:43 +01:00
"mypy>=1.13.0",
2025-12-18 21:37:28 +01:00
]
2025-12-19 00:12:43 +01:00
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_ignores = true
check_untyped_defs = true
ignore_missing_imports = true
exclude = ["tests/"]