pyo3/pytests/pyproject.toml

30 lines
704 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 = [
2024-02-13 00:14:55 +00:00
"gevent>=22.10.2; implementation_name == 'cpython'",
2023-12-04 19:03:56 +00:00
"hypothesis>=3.55",
"pytest-asyncio>=0.21",
"pytest-benchmark>=3.4",
"pytest>=6.0",
"typing_extensions>=4.0.0"
]