2019-06-04 09:09:58 +00:00
|
|
|
[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"
|
2023-11-01 05:58:18 +00:00
|
|
|
requires-python = ">=3.8"
|
2023-06-21 00:00:11 +00:00
|
|
|
|
2023-08-04 11:27:52 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"nox",
|
|
|
|
]
|
|
|
|
|
2023-06-21 00:00:11 +00:00
|
|
|
[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",
|
|
|
|
]
|