[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "probabilistic-rs"
version = "0.6.0"
description = "Probabilistic data structures: Bloom filters, time-decay filters, and more"
readme = "README.md"
license = "MIT"
authors = [{ name = "oiwn" }]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
keywords = ["bloom-filter", "probabilistic", "time-decay", "cache", "rate-limiting"]
[project.urls]
Homepage = "https://github.com/oiwn/probabilistic-rs"
Repository = "https://github.com/oiwn/probabilistic-rs"
Documentation = "https://github.com/oiwn/probabilistic-rs#readme"
[tool.maturin]
features = ["python"]
module-name = "probabilistic_rs"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"hypothesis>=6.0",
]
[tool.pytest.ini_options]
testpaths = ["python/tests"]
addopts = "-v --tb=short"