Files
AareDAQ/daq/pyproject.toml
T
GotthardG 35e7ad3ce0
Build and Publish / build (push) Successful in 21s
Add SSE client support for TELL updates and enhance resilience
Replaced periodic polling with an SSE-based listener for real-time TELL updates, improving efficiency and responsiveness. Enhanced WebSocket client logic by implementing automatic reconnection. Updated dependencies to include `sseclient` and upgraded `aaredb` for compatibility.
2025-06-24 11:07:01 +02:00

36 lines
774 B
TOML

[project]
name = "aaredaq"
version = "0.1.0"
description = "AareDAQ data acquisition server"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"requests~=2.32.3",
"pyepics~=3.5.7",
"redis~=6.1.0",
"python-redis-lock~=4.0.0",
"PyJWT==2.10.1",
"fastapi==0.115.12",
"uvicorn==0.34.2",
"ultralytics==8.3.133",
"aaredb==0.1.1a9",
"opencv-python-headless==4.11.0.86",
"python_multipart==0.0.20",
"websocket-client",
"sseclient>=0.0.27",
]
[lint]
ignore = ["F401", "F541", "W503", "W504"]
[tool.uv.sources]
aaredb = { index = "psi"}
[[tool.uv.index]]
name = "psi"
url = "https://gitea.psi.ch/api/packages/mx/pypi/simple"
[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"