ktx/pyproject.toml

44 lines
848 B
TOML
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
[project]
2026-05-10 23:51:24 +02:00
name = "ktx-workspace"
2026-05-10 23:12:26 +02:00
version = "0.0.0"
2026-05-10 23:51:24 +02:00
description = "Workspace root for ktx Python packages"
2026-05-10 23:12:26 +02:00
requires-python = ">=3.13"
license = "Apache-2.0"
dependencies = []
[project.urls]
Homepage = "https://github.com/kaelio/ktx"
Repository = "https://github.com/kaelio/ktx"
Issues = "https://github.com/kaelio/ktx/issues"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.8.4",
]
[tool.uv]
required-version = "0.11.11"
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cpu" }
[tool.uv.workspace]
members = [
2026-05-10 23:51:24 +02:00
"python/ktx-sl",
"python/ktx-daemon",
2026-05-10 23:12:26 +02:00
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
2026-05-10 23:51:24 +02:00
pythonpath = ["python/ktx-sl/tests"]
2026-05-10 23:12:26 +02:00
testpaths = [
2026-05-10 23:51:24 +02:00
"python/ktx-sl/tests",
"python/ktx-daemon/tests",
2026-05-10 23:12:26 +02:00
]