pyo3/examples/word-count/pyproject.toml

23 lines
541 B
TOML
Raw Normal View History

2018-08-04 17:55:15 +00:00
[build-system]
2023-06-14 07:45:32 +00:00
requires = ["maturin>=1,<2"]
2022-01-22 23:15:36 +00:00
build-backend = "maturin"
[project]
name = "word-count"
version = "0.1.0"
2022-08-18 06:51:19 +00:00
classifiers = [
2022-01-22 23:15:36 +00:00
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-benchmark"]
2022-01-22 23:15:36 +00:00
[tool.pytest.ini_options]
addopts = "--benchmark-disable"