Files
AareDAQ/pyproject.toml
T
GotthardGandClaude Fable 5.1 cee700dd1f
Build and Publish / test (push) Successful in 2m52s
Build and Publish / build (push) Successful in 16s
Build and Publish / Build and Deploy Docs (push) Failing after 35s
build: jfjoch_client rc146 -> rc166 (required by aarecommon >= 0.7)
aarecommon floors jfjoch-client at 1.0.0rc166 (per-image ice / latt_count,
rotation_bravais). All 9 DefaultApi calls in devices/jfjoch.py exist in
rc166, whose API is a superset of rc146 (192 vs 186 methods).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GPer4T34EcvqVJGpeiEJ4Y
2026-09-08 18:20:44 +02:00

68 lines
1.6 KiB
TOML

[project]
name = "aaredaq"
version = "0.3.3"
description = "AareDAQ (with GUI)"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic==2.11.4",
"numpy==2.2.5",
"jfjoch_client==1.0.0rc166",
"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.83.1",
"aarecommon==0.7.4",
"python_multipart==0.0.20",
"websocket-client==1.8.0",
"sseclient==0.0.27", #Was sseclient-py==1.8.0 but this was broken???
"psi-pshell==2.1.0",
"bec_lib>=3.130.3",
"bec-ipython-client>=3.130.3",
"aarescan-client==1.0.0rc5",
"aarelcinfer-client==0.1.1a6",
"matplotlib>=3.10.3",
"httpx>=0.28.1",
]
[project.optional-dependencies]
test = [
# "pytest==9.0.3",
"pytest-cov==7.1.0",
"pytest-mock==3.14.0",
"pytest-qt==4.4.0",
"pytest-asyncio==0.25.3",
]
[lint]
ignore = ["F401", "F541", "W503", "W504"]
[tool.uv.sources]
aaredb = { index = "psi"}
aarecommon = { 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"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
markers = [
"integration: tests that require external systems or secrets",
]
[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"