tantivy-py/pyproject.toml

29 lines
629 B
TOML
Raw Normal View History

[build-system]
2023-11-19 14:47:44 +00:00
requires = ["maturin<=1.3.2"]
2020-01-05 12:52:53 +00:00
build-backend = "maturin"
2022-01-17 12:57:34 +00:00
[project]
name = "tantivy"
requires-python = ">=3.8"
2024-11-15 08:40:06 +00:00
version = "0.23.0"
2023-08-04 11:27:52 +00:00
[project.optional-dependencies]
dev = [
"nox",
]
[tool.maturin]
bindings = "pyo3"
2023-11-20 01:44:32 +00:00
[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",
]