29 lines
629 B
TOML
29 lines
629 B
TOML
[build-system]
|
|
requires = ["maturin<=1.3.2"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "tantivy"
|
|
requires-python = ">=3.8"
|
|
version = "0.23.0"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"nox",
|
|
]
|
|
|
|
[tool.maturin]
|
|
bindings = "pyo3"
|
|
|
|
[tool.pytest.ini_options]
|
|
# Set the durations option and doctest modules
|
|
# See https://docs.pytest.org/en/latest/usage.html#durations
|
|
addopts = "--doctest-modules --durations=10"
|
|
# Use the `--ignore-glob` setting to exclude the `noxfile.py` module from the doctests
|
|
# See https://docs.pytest.org/en/latest/reference.html#confval-ignore_glob
|
|
testpaths = [
|
|
"tests",
|
|
"tantivy",
|
|
"src",
|
|
]
|