Files
AareCommon/pyproject.toml
T
perl_d ef78859a2c
Full CI / lint (push) Successful in 4s
Full CI / test (3.11) (push) Failing after 21s
Full CI / test (3.12) (push) Failing after 22s
Full CI / test (3.13) (push) Failing after 32s
ci: add test run
2026-07-02 12:03:10 +02:00

35 lines
725 B
TOML

[build-system]
requires = ["setuptools>=75.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aarecommon"
version = "0.1"
description = "Common components (models, calculations) for Aare packages"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"jfjoch-client",
"pydantic",
"numpy",
"opencv-python",
"pillow"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-random-order"
]
[[tool.uv.index]]
name = "psi"
url = "https://gitea.psi.ch/api/packages/mx/pypi/simple"
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["scripts", ".venv", "logs", "docs"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"