35 lines
696 B
TOML
35 lines
696 B
TOML
[project]
|
|
name = "Auth-Backend"
|
|
version = "0.1.0"
|
|
description = "Default template for PDM package"
|
|
authors = [
|
|
{name = "Jan Benicek", email = "jan00@benicek.xyz"},
|
|
]
|
|
dependencies = [
|
|
"sqlalchemy>=2.0.35",
|
|
"fastapi>=0.115.0",
|
|
"uvicorn>=0.31.0",
|
|
"pydantic>=2.9.2",
|
|
"pydantic-settings>=2.5.2",
|
|
"dotenv>=0.0.5",
|
|
"pyjwt>=2.9.0",
|
|
"psycopg2-binary>=2.9.9",
|
|
"passlib>=1.7.4",
|
|
"argon2-cffi>=23.1.0",
|
|
"pyotp>=2.9.0",
|
|
]
|
|
requires-python = ">=3.12"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = true
|
|
|
|
[tool.pdm.scripts]
|
|
start = "uvicorn src.main:app --reload"
|