vicinity 0.6.1

Approximate nearest-neighbor search
Documentation
[build-system]
requires = ["maturin>=1.9.4,<2.0"]
build-backend = "maturin"

[project]
name = "pyvicinity"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = ["numpy"]
description = "Multi-algorithm approximate nearest-neighbor search (Rust-backed)"
license = { text = "MIT OR Apache-2.0" }
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
]

[project.urls]
Homepage = "https://github.com/arclabs561/vicinity"
Source = "https://github.com/arclabs561/vicinity"

[project.optional-dependencies]
ann-benchmarks = ["h5py"]

[tool.ruff]
target-version = "py39"

[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]

[tool.maturin]
module-name = "pyvicinity._core"
features = ["pyo3/extension-module", "python"]
python-source = "."