vicinity 0.11.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.10"
dependencies = ["numpy"]
description = "Approximate nearest-neighbor search"
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",
  "Programming Language :: Python :: 3.10",
  "Programming Language :: Python :: 3.11",
  "Programming Language :: Python :: 3.12",
  "Programming Language :: Python :: 3.13",
  "Typing :: Typed",
]

[project.urls]
Homepage = "https://github.com/arclabs561/vicinity"
Source = "https://github.com/arclabs561/vicinity"
Documentation = "https://docs.rs/vicinity"
Issues = "https://github.com/arclabs561/vicinity/issues"
Changelog = "https://github.com/arclabs561/vicinity/blob/main/CHANGELOG.md"

[project.optional-dependencies]
ann-benchmarks = ["h5py"]
test = [
    "pytest>=7",
    "numpy",
    "mypy>=1.19",
]

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

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

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