SequentMicrosystems_API/pyproject.toml

22 lines
434 B
TOML

[project]
name = "SequentMicrosystems_API"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Jan Benicek", email = "jan00@benicek.xyz"},
]
dependencies = [
"fastapi>=0.115.5",
"uvicorn>=0.32.1",
"dotenv>=0.0.5",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
start = "uvicorn src.main:app --reload"