ktx/python/ktx-sl/pyproject.toml

60 lines
1.1 KiB
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-sl"
chore(release): 0.9.0 [skip ci] ## [0.9.0](https://github.com/Kaelio/ktx/compare/v0.8.0...v0.9.0) (2026-06-03) ### Features * add codex llm backend for ktx runtime work ([#253](https://github.com/Kaelio/ktx/issues/253)) ([494618a](https://github.com/Kaelio/ktx/commit/494618ab142505bd988156d867be047e3affc4c3)) * **cli:** consistent connection setup recovery and build-time gate ([#257](https://github.com/Kaelio/ktx/issues/257)) ([ce1516b](https://github.com/Kaelio/ktx/commit/ce1516b357807874902d189d1d163755634083e8)) * **cli:** guide next action at end of ktx setup, not reruns ([#256](https://github.com/Kaelio/ktx/issues/256)) ([45aa95d](https://github.com/Kaelio/ktx/commit/45aa95d2cc121267bbbc8c184402a19573956dd4)) * **cli:** stream plain ktx ingest progress to stderr (KLO-726) ([#251](https://github.com/Kaelio/ktx/issues/251)) ([13774bf](https://github.com/Kaelio/ktx/commit/13774bfcef1622a83e29f27042bde1bcdd97beb2)) * **query-history:** scope mining to modeled schemas by default ([#258](https://github.com/Kaelio/ktx/issues/258)) ([e70ae1e](https://github.com/Kaelio/ktx/commit/e70ae1e63bcd7168ade90b8998a06b561ce36cf2)) * **telemetry:** include error details for failures ([#254](https://github.com/Kaelio/ktx/issues/254)) ([6da8c34](https://github.com/Kaelio/ktx/commit/6da8c3452a97bfcbeefd8bbcc3379d4d41b4dc9f)) ### Bug Fixes * **ingest:** recover textual-conflict gate failures; fix query-history adapter ([#255](https://github.com/Kaelio/ktx/issues/255)) ([f5dea9a](https://github.com/Kaelio/ktx/commit/f5dea9a0891305e7c4d90b0156638681fe75c1dc)) ### Other Changes * refresh star history chart [skip ci] ([9d3a0b7](https://github.com/Kaelio/ktx/commit/9d3a0b751df68c19df8007c4dec4c891f73246b0)) * refresh star history chart [skip ci] ([74c6076](https://github.com/Kaelio/ktx/commit/74c6076b72d0f79d8e7bfa8ef31550de39a36d00)) * refresh star history chart [skip ci] ([d01abe6](https://github.com/Kaelio/ktx/commit/d01abe6f3c8330dbdcf674ef8891e2b2118ac192)) * revert repo references to Kaelio/ktx and remove rename-resilience ([#252](https://github.com/Kaelio/ktx/issues/252)) ([41e20c9](https://github.com/Kaelio/ktx/commit/41e20c9ce7c4dcfc848073d72ae7c4ea766506fc)), closes [#250](https://github.com/Kaelio/ktx/issues/250) [#250](https://github.com/Kaelio/ktx/issues/250)
2026-06-03 21:50:59 +00:00
version = "0.9.0"
2026-05-10 23:12:26 +02:00
description = "Agent-first semantic layer engine with aggregate locality"
readme = "README.md"
requires-python = ">=3.13"
license = "Apache-2.0"
dependencies = [
"sqlglot>=30",
"pydantic>=2",
"pyyaml>=6",
2026-05-10 23:12:26 +02:00
]
[project.urls]
Homepage = "https://github.com/kaelio/ktx"
Repository = "https://github.com/kaelio/ktx"
Issues = "https://github.com/kaelio/ktx/issues"
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-cov",
"ruff",
"pre-commit",
2026-05-10 23:12:26 +02:00
]
tpch = [
"duckdb>=1.0",
2026-05-10 23:12:26 +02:00
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["tests"]
addopts = "--cov=semantic_layer --cov-report=term-missing --cov-report=html"
[tool.coverage.run]
source = ["semantic_layer"]
branch = true
[tool.coverage.report]
show_missing = true
skip_empty = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
2026-05-10 23:12:26 +02:00
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["semantic_layer"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
2026-05-10 23:12:26 +02:00
]