simi-flow 0.1.0

A general-purpose toolkit of similarity checks: protect developers from wasting compute on LLMs for simple tasks
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "simi-flow"
version = "0.1.0"
description = "SIMI — a general-purpose toolkit of similarity checks"
readme = "python/README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
authors = [{ name = "SIKTEC Lab", email = "siktec.lab@gmail.com" }]
keywords = ["similarity", "levenshtein", "jaro-winkler", "bm25", "tf-idf"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
    "Topic :: Software Development :: Libraries",
    "Topic :: Text Processing :: Linguistic",
]

[project.urls]
Homepage = "https://github.com/siktec-lab/simi-flow"
Repository = "https://github.com/siktec-lab/simi-flow"
Issues = "https://github.com/siktec-lab/simi-flow/issues"

[tool.maturin]
bindings = "pyo3"
features = ["python"]
module-name = "simi"