Files
kb/pyproject.toml
T
2026-03-23 20:38:42 +00:00

33 lines
639 B
TOML

[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"]