Initial MVP

This commit is contained in:
2026-03-23 20:38:42 +00:00
commit f245c24928
57 changed files with 6812 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kb-search"
version = "0.1.0"
description = "CLI knowledge base with hybrid search (FTS + vector)"
requires-python = ">=3.11"
license = "MIT"
dependencies = [
"click>=8.1",
"pyyaml>=6.0",
"sentence-transformers[onnx]>=3.0",
"sqlite-vec>=0.1.1",
"docling>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
[project.scripts]
kb = "kb_search.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]