hannoy 0.1.2

HNSW Approximate Nearest Neighbors in Rust, based on LMDB and optimized for memory usage
Documentation
[build-system]
requires = ["maturin>=1.9.1,<2"]
build-backend = "maturin"
description = "Python bindings for Hannoy; a KV-backed HNSW implementation in Rust using LMDB."
requires-python = ">=3.10"

[project]
name = "hannoy"
authors = [
    { name = "Kerollmops", email = "clement@meilisearch.com" },
    { name = "Tamo", email = "tamo@meilisearch.com" },
    { name = "Nate", email = "natenethercott@gmail.com" },
]
license = "MIT"
readme = "README.md"
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Programming Language :: Python :: 3",
]
urls.Source = "https://github.com/nnethercott/hannoy"
dynamic = ["version", "description"]
requires-python = ">=3.9"

[project.optional-dependencies]
[tool.maturin]
features = ["extension-module"]

[dependency-groups]
dev = [
    "maturin[patchelf]>=1.9.4",
    "pytest>=8.4.2",
]
test = [
    "pytest>=8.4.1",
]