elid 0.4.3

Embedding Locality IDentifier - encode embeddings into sortable string IDs for vector search without vector stores, plus fast string similarity algorithms
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "elid"
version = "0.4.3"
description = "Embedding Locality IDentifier - encode embeddings into sortable string IDs for vector search, plus fast string similarity algorithms"
authors = [{name = "Zach Handley", email = "zachhandley@gmail.com"}]
readme = "README.md"
requires-python = ">=3.8,<3.14"
license = {text = "MIT OR Apache-2.0"}
keywords = ["embeddings", "vector-search", "locality-sensitive-hashing", "string-similarity", "levenshtein", "fuzzy-search", "jaro-winkler", "rust"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Rust",
    "Topic :: Software Development :: Libraries :: Python Modules",
    "Topic :: Text Processing",
]

[project.urls]
Homepage = "https://github.com/ZachHandley/ELID"
Repository = "https://github.com/ZachHandley/ELID"
Issues = "https://github.com/ZachHandley/ELID/issues"

[tool.maturin]
features = ["python"]
module-name = "elid"
include = [
    { path = "elid.pyi", format = "wheel" },
]

[dependency-groups]
dev = [
    "maturin>=1.11.5",
]