32 lines
656 B
TOML
32 lines
656 B
TOML
[project]
|
|
name = "inventory-backend"
|
|
version = "0.1.0"
|
|
description = "Inventory tracking service API"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"fastapi>=0.139.2",
|
|
"uvicorn[standard]>=0.34.0",
|
|
"sqlalchemy[asyncio]>=2.0.36",
|
|
"asyncpg>=0.30.0",
|
|
"alembic>=1.14.0",
|
|
"pydantic-settings>=2.7.0",
|
|
"argon2-cffi>=23.1.0",
|
|
"pyjwt>=2.10.0",
|
|
"boto3>=1.35.0",
|
|
"qrcode[pil]>=8.0",
|
|
"python-multipart>=0.0.20",
|
|
"typer>=0.15.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.0",
|
|
"pytest-asyncio>=0.25.0",
|
|
"httpx>=0.28.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
pythonpath = ["."]
|