Files
MediaLore-Web-App/backend/pyproject.toml
Garret Patti 2b0b19eb91 add auth
2026-06-29 10:41:29 -04:00

25 lines
509 B
TOML

[project]
name = "medialore"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sqlalchemy[asyncio]>=2.0",
"aiosqlite>=0.20",
"alembic>=1.13",
"pydantic-settings>=2.0",
"watchdog>=4.0",
"Pillow>=10.0",
"python-multipart>=0.0.9",
"python-jose[cryptography]>=3.3",
"bcrypt>=4.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]