Initial open-source release

This commit is contained in:
Andrey Avtomonov 2026-05-10 23:12:26 +02:00
commit 1a42152e6f
1199 changed files with 257054 additions and 0 deletions

43
pyproject.toml Normal file
View file

@ -0,0 +1,43 @@
[project]
name = "klo-workspace"
version = "0.0.0"
description = "Workspace root for klo Python packages"
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 = [
"python/klo-sl",
"python/klo-daemon",
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = ["python/klo-sl/tests"]
testpaths = [
"python/klo-sl/tests",
"python/klo-daemon/tests",
]