17 lines
386 B
TOML
17 lines
386 B
TOML
|
|
[project]
|
||
|
|
name = "operation-room-monitor-server"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Operation room monitor API server"
|
||
|
|
requires-python = ">=3.13"
|
||
|
|
dependencies = [
|
||
|
|
"asyncpg>=0.31.0",
|
||
|
|
"fastapi>=0.136.0",
|
||
|
|
"loguru>=0.7.3",
|
||
|
|
"pydantic-settings>=2.13.1",
|
||
|
|
"sqlalchemy>=2.0.49",
|
||
|
|
"uvicorn[standard]>=0.44.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
operation-room-monitor-server = "main:main"
|