mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
## [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](cfd1749ab9)) * **cli:** surface docs and demo-warehouse links in ktx setup ([#221](https://github.com/Kaelio/ktx/issues/221)) ([62699bf](62699bfe9d)) * **connectors:** generalize readiness and constraint handling ([#212](https://github.com/Kaelio/ktx/issues/212)) ([78b8a0c](78b8a0c025)) ### Bug Fixes * **ingest:** attribute historic-sql evidence writes in bundle report ([#220](https://github.com/Kaelio/ktx/issues/220)) ([1071f9d](1071f9d1c9)) * **scripts:** make package artifacts pnpm launch work on Windows ([2a6fb19](2a6fb19ba4)) * update ktx CI boundary checks ([#223](https://github.com/Kaelio/ktx/issues/223)) ([bc7373f](bc7373fa8e)) ### Documentation * ban ktx compatibility shims ([#214](https://github.com/Kaelio/ktx/issues/214)) ([a9db379](a9db3797e6)) * **readme:** restructure for clarity and add FAQ + comparison table ([#222](https://github.com/Kaelio/ktx/issues/222)) ([0eeac6f](0eeac6f980)) * standardize fanout terminology ([#218](https://github.com/Kaelio/ktx/issues/218)) ([9248688](924868841d)) ### Code Refactoring * remove legacy ktx compatibility shims ([#211](https://github.com/Kaelio/ktx/issues/211)) ([96952fb](96952fb43c)) ### Tests * split cli tests from source tree ([#216](https://github.com/Kaelio/ktx/issues/216)) ([56985b7](56985b7e09)) ### Continuous Integration * disable telemetry in workflows ([#217](https://github.com/Kaelio/ktx/issues/217)) ([4827437](4827437f3a))
55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
[project]
|
|
name = "ktx-daemon"
|
|
version = "0.6.0"
|
|
description = "Portable compute package for KTX semantic-layer operations"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
license = "Apache-2.0"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"ktx-sl",
|
|
"lkml>=1.3.7",
|
|
"numpy>=2.2.6",
|
|
"orjson>=3.11.4",
|
|
"pandas>=2.2.3",
|
|
"posthog>=7.0.0",
|
|
"psycopg[binary]>=3.2.0",
|
|
"pydantic>=2.9.0",
|
|
"requests>=2.32.0",
|
|
"sqlglot>=26",
|
|
"uvicorn[standard]>=0.32.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
ktx-daemon = "ktx_daemon.__main__:main"
|
|
|
|
[project.optional-dependencies]
|
|
local-embeddings = [
|
|
"sentence-transformers>=5.1.1",
|
|
"torch>=2.2.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/kaelio/ktx"
|
|
Repository = "https://github.com/kaelio/ktx"
|
|
Issues = "https://github.com/kaelio/ktx/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ktx_daemon"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"httpx>=0.28.1",
|
|
"pytest>=9.0.2",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
ktx-sl = { workspace = true }
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|