29 lines
620 B
TOML
29 lines
620 B
TOML
[project]
|
|
name = "dagemark-backend"
|
|
version = "0.1.0"
|
|
description = "Dagemark.se Backend, built with FastAPI"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Hannah", email = "hannah.dagemark@gmail.com" }
|
|
]
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"fastapi",
|
|
"uvicorn",
|
|
"sqlmodel",
|
|
"alembic",
|
|
"python-jose",
|
|
"passlib[bcrypt]",
|
|
"python-multipart",
|
|
"pydantic_settings",
|
|
"httpx>=0.28.1",
|
|
"pyjwt>=2.13.0",
|
|
"pwdlib[argon2]>=0.3.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
dagemark-backend = "dagemark_backend:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.12.1,<0.13.0"]
|
|
build-backend = "uv_build"
|