[project]
name = "strsim-2"
version = "1.1.2"
description = "Yet another string similarity library (implemented in Rust)"
readme = "README.md"
authors = [{ name = "Binh Vu", email = "binh@toan2.com" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.8"
dependencies = []
[project.urls]
homepage = "https://github.com/binh-vu/strsim"
repository = "https://github.com/binh-vu/strsim"
[project.optional-dependencies]
dev = ['pytest >= 7.1.3, < 8.0.0']
[tool.maturin]
module-name = "strsim"
features = ["extension-module"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"