pyo3/pytests/pyproject.toml

30 lines
733 B
TOML
Raw Normal View History

2022-01-22 23:15:36 +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"
[tool.pytest.ini_options]
addopts = "--benchmark-disable"
2022-08-18 06:51:19 +00:00
[project]
name = "pyo3_pytests"
version = "0.1.0"
classifiers = [
"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",
]
2023-12-04 19:03:56 +00:00
[project.optional-dependencies]
dev = [
"hypothesis>=3.55",
"pytest-asyncio>=0.21",
"pytest-benchmark>=3.4",
2024-03-10 16:17:15 +00:00
# pinned < 8.1 because https://github.com/CodSpeedHQ/pytest-codspeed/issues/27
2024-03-19 19:36:22 +00:00
"pytest>=7,<8.1",
2023-12-04 19:03:56 +00:00
"typing_extensions>=4.0.0"
]