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",
|
2024-03-10 16:17:15 +00:00
|
|
|
# pinned < 8.1 because https://github.com/CodSpeedHQ/pytest-codspeed/issues/27
|
|
|
|
"pytest>=8,<8.1",
|
2023-12-04 19:03:56 +00:00
|
|
|
"typing_extensions>=4.0.0"
|
|
|
|
]
|