FV-API/pyproject.toml

23 lines
450 B
TOML
Raw Normal View History

[project]
name = "FV-API"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Jan Benicek", email = "jan00@benicek.xyz"},
]
dependencies = [
"pydantic-settings>=2.3.4",
"fastapi>=0.111.1",
"motor>=3.5.1",
"uvicorn>=0.30.3",
]
requires-python = "==3.12.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
start = "uvicorn src.main:app --reload"