Files
Dmitriy Kovalenko 459ebcdbdb chore: release 0.10.5
2026-08-16 09:00:23 -07:00

34 lines
754 B
TOML

[project]
name = "fff-search"
version = "0.10.5"
description = "Python bindings for FFF (Fast File Finder)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"maturin>=1.0",
]
[project.urls]
Repository = "https://github.com/dmtrKovalenko/fff"
Issues = "https://github.com/dmtrKovalenko/fff/issues"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "../../crates/fff-python/Cargo.toml"
module-name = "fff._fff_python"
python-source = "src"
exclude = ["src/**/__pycache__/*", "src/**/*.pyc"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"