49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[project]
|
|
name = "aaredaq"
|
|
version = "0.3.0"
|
|
description = "AareDAQ (with GUI)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pydantic==2.11.4",
|
|
"numpy==2.2.5",
|
|
"jfjoch_client==1.0.0rc126",
|
|
"pyJWT==2.10.1",
|
|
"pyzmq==26.4.0",
|
|
"opencv-python-headless==4.11.0.86",
|
|
"PySide6==6.9.0",
|
|
"requests==2.32.4",
|
|
"pyepics==3.5.8",
|
|
"redis==6.2.0",
|
|
"python-redis-lock==4.0.0",
|
|
"fastapi==0.115.13",
|
|
"uvicorn==0.34.2",
|
|
"aaredb==0.1.1a43",
|
|
"python_multipart==0.0.20",
|
|
"websocket-client==1.8.0",
|
|
"sseclient-py==1.8.0",
|
|
"psi-pshell==2.1.0",
|
|
]
|
|
|
|
[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"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
norecursedirs = ["scripts", ".venv", "logs", "docs"]
|
|
markers = [
|
|
"integration: tests that require external systems or secrets",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=75.6.0"]
|
|
build-backend = "setuptools.build_meta"
|