Files
proxmox-web-portal/pyproject.toml
2026-04-28 09:58:32 +02:00

23 lines
459 B
TOML

[tool.fastapi]
entrypoint = "src.main:app"
[project]
name = "proxmox-web-portal"
version = "1.0.0"
description = "A FastAPI application to provide students and teachers and easier way to access labb course machines"
dependencies = [
"fastapi[standard-no-fastapi-cloud-cli]",
"websockets",
"requests",
"configparser",
"itsdangerous",
"mariadb",
"asyncio"
]
[tool.uvicorn]
host = "127.0.0.1"
port = 7550
workers = 1
reload = false