26 lines
496 B
TOML
26 lines
496 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",
|
|
]
|
|
requires-python = ">=3.12"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = true
|