[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "elid"
version = "0.1.0"
description = "Fast string similarity library for Python - Rust bindings for ELID"
authors = [{name = "ELID Contributors"}]
readme = "README.md"
requires-python = ">=3.8,<3.14"
license = {text = "MIT OR Apache-2.0"}
keywords = ["string-similarity", "levenshtein", "fuzzy-search", "fuzzy-matching", "jaro-winkler", "hamming", "distance", "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://forge.blackleafdigital.com/BlackLeafDigital/ELID"
Repository = "https://forge.blackleafdigital.com/BlackLeafDigital/ELID"
Issues = "https://forge.blackleafdigital.com/BlackLeafDigital/ELID/issues"
[tool.maturin]
features = ["python"]
module-name = "elid"
[dependency-groups]
dev = [
"maturin>=1.11.5",
]