ktx/python/ktx-sl/pyproject.toml

60 lines
1.1 KiB
TOML
Raw 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.16.0 [skip ci] ## [0.16.0](https://github.com/Kaelio/ktx/compare/v0.15.0...v0.16.0) (2026-07-03) ### Features * Add duckdb connector ([#308](https://github.com/Kaelio/ktx/issues/308)) ([3c4fcc2](https://github.com/Kaelio/ktx/commit/3c4fcc27c790624d45ebaff23e84722d22b3573f)) * **athena:** first-class AWS Athena warehouse identity (SL + BI mapping) ([#332](https://github.com/Kaelio/ktx/issues/332)) ([f310391](https://github.com/Kaelio/ktx/commit/f310391da53642a98defe19cef9584389ce03ff7)) * **connector:** add Amazon Athena connector via Glue Data Catalog ([#309](https://github.com/Kaelio/ktx/issues/309)) ([fe7e6bd](https://github.com/Kaelio/ktx/commit/fe7e6bd1faced28b977cd4c8d61a13a08dcf7514)) * query_policy semantic-layer-only restricts agents to predefined semantic-layer measures ([#334](https://github.com/Kaelio/ktx/issues/334)) ([a651b82](https://github.com/Kaelio/ktx/commit/a651b82e2f2e160c321ed9a3487d7f2e2f5ebebc)) ### Bug Fixes * **deps:** patch 22 Dependabot security alerts ([#328](https://github.com/Kaelio/ktx/issues/328)) ([6d01030](https://github.com/Kaelio/ktx/commit/6d0103074595cfb84a3508782810c2dbf0774774)) * **sl:** classify semantic-query request rejections as expected, not faults ([#339](https://github.com/Kaelio/ktx/issues/339)) ([a0d19ba](https://github.com/Kaelio/ktx/commit/a0d19ba26fd98a6277e6789f9dd8e0a0e1413f0c)) * **sl:** correct reserved-word/week-grain SQL and classify sl_query errors ([#340](https://github.com/Kaelio/ktx/issues/340)) ([4ebce75](https://github.com/Kaelio/ktx/commit/4ebce754496dc6cda0637824d44876499efecd22)) * **telemetry:** classify daemon query rejections as expected, not faults ([#335](https://github.com/Kaelio/ktx/issues/335)) ([5d17469](https://github.com/Kaelio/ktx/commit/5d17469601f7891fb124612ce4b718c0365e3ab0)) ### Documentation * reflect recently added connectors in ingestion diagram and README ([#333](https://github.com/Kaelio/ktx/issues/333)) ([66768fe](https://github.com/Kaelio/ktx/commit/66768fe009e166d573b5a4c337f30a254ca69f1a))
2026-07-03 21:22:57 +00:00
version = "0.16.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
]