34 lines
754 B
TOML
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"
|