[build-system] requires = ["setuptools>=68.0"] build-backend = "setuptools.build_meta" [project] name = "kb-engine" version = "2.0.0" description = "Knowledge base engine — FastAPI server with hybrid search and async ingestion" requires-python = ">=3.11" license = "MIT" dependencies = [ "fastapi>=0.115", "uvicorn[standard]>=0.30", "python-multipart>=0.0.9", "click>=8.1", "pyyaml>=6.0", "sentence-transformers>=3.0", "sqlite-vec>=0.1.1", "docling>=2.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.24", "httpx>=0.27", ] [tool.setuptools.packages.find] where = ["."] include = ["kb*"] [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto"