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.6.0 [skip ci] ## [0.6.0](https://github.com/Kaelio/ktx/compare/v0.5.0...v0.6.0) (2026-05-26) ### Features * **cli:** skip-context-sources menu + clack-style tree picker UX ([#213](https://github.com/Kaelio/ktx/issues/213)) ([cfd1749](https://github.com/Kaelio/ktx/commit/cfd1749ab91afa5834e578c99d6047d04639b7d9)) * **cli:** surface docs and demo-warehouse links in ktx setup ([#221](https://github.com/Kaelio/ktx/issues/221)) ([62699bf](https://github.com/Kaelio/ktx/commit/62699bfe9d6e77abeeddfe81ccd544b2feb8893c)) * **connectors:** generalize readiness and constraint handling ([#212](https://github.com/Kaelio/ktx/issues/212)) ([78b8a0c](https://github.com/Kaelio/ktx/commit/78b8a0c025d62696c56e945a30b72c1f34fe816e)) ### Bug Fixes * **ingest:** attribute historic-sql evidence writes in bundle report ([#220](https://github.com/Kaelio/ktx/issues/220)) ([1071f9d](https://github.com/Kaelio/ktx/commit/1071f9d1c9b2c8ddc1b3aa74972aecf36d7eb236)) * **scripts:** make package artifacts pnpm launch work on Windows ([2a6fb19](https://github.com/Kaelio/ktx/commit/2a6fb19ba425a06f89e14621b1b7934c9b175bf6)) * update ktx CI boundary checks ([#223](https://github.com/Kaelio/ktx/issues/223)) ([bc7373f](https://github.com/Kaelio/ktx/commit/bc7373fa8e791295dcd6b4fca20b358470c0890e)) ### Documentation * ban ktx compatibility shims ([#214](https://github.com/Kaelio/ktx/issues/214)) ([a9db379](https://github.com/Kaelio/ktx/commit/a9db3797e6701fb9a629196506cc50b2de5c7fb7)) * **readme:** restructure for clarity and add FAQ + comparison table ([#222](https://github.com/Kaelio/ktx/issues/222)) ([0eeac6f](https://github.com/Kaelio/ktx/commit/0eeac6f980f5df8acba9d50607eb4f85a8f30b8f)) * standardize fanout terminology ([#218](https://github.com/Kaelio/ktx/issues/218)) ([9248688](https://github.com/Kaelio/ktx/commit/924868841deefa69ac86f694e8ad3c92c27d63f4)) ### Code Refactoring * remove legacy ktx compatibility shims ([#211](https://github.com/Kaelio/ktx/issues/211)) ([96952fb](https://github.com/Kaelio/ktx/commit/96952fb43cfba4efc26bc91f347d99a9ad2dc03b)) ### Tests * split cli tests from source tree ([#216](https://github.com/Kaelio/ktx/issues/216)) ([56985b7](https://github.com/Kaelio/ktx/commit/56985b7e098ca06cb134f9ea8fd44976d23b8134)) ### Continuous Integration * disable telemetry in workflows ([#217](https://github.com/Kaelio/ktx/issues/217)) ([4827437](https://github.com/Kaelio/ktx/commit/4827437f3a12042f681f0f4a908252cf57d825e2))
2026-05-26 21:19:07 +00:00
version = "0.6.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>=26",
"pydantic>=2",
"pyyaml>=6",
]
[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",
]
tpch = [
"duckdb>=1.0",
]
[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:",
]
[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",
]