* fix: diskann zmq port and passages * feat: auto discovery of packages and fix passage gen for diskann * docs: embedding pruning * refactor: passage structure * feat: reproducible research datas, rpj_wiki & dpr * refactor: chat and base searcher * feat: chat on mps
17 lines
470 B
TOML
17 lines
470 B
TOML
# packages/leann-backend-hnsw/pyproject.toml
|
|
|
|
[build-system]
|
|
requires = ["scikit-build-core>=0.10", "numpy", "swig"]
|
|
build-backend = "scikit_build_core.build"
|
|
|
|
[project]
|
|
name = "leann-backend-hnsw"
|
|
version = "0.1.0"
|
|
description = "Custom-built HNSW (Faiss) backend for the Leann toolkit."
|
|
dependencies = ["leann-core==0.1.0", "numpy"]
|
|
|
|
[tool.scikit-build]
|
|
wheel.packages = ["leann_backend_hnsw"]
|
|
editable.mode = "redirect"
|
|
cmake.build-type = "Debug"
|
|
build.verbose = true |