26 lines
536 B
TOML
26 lines
536 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",
|
|
"SMrtd>=1.0.1",
|
|
"SM4relind>=1.0.3",
|
|
"python-dotenv>=1.0.1",
|
|
"SMmegaind>=1.0.3",
|
|
"apscheduler>=3.11.0",
|
|
]
|
|
requires-python = ">=3.12"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = false
|
|
|
|
[tool.pdm.scripts]
|
|
start = "uvicorn src.main:app --reload" |