1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
[build-system]
requires = [
"setuptools",
"setuptools-scm[toml]",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-mock"
description = "Thin-wrapper around the mock package for easier use with pytest"
authors = [
{name = "Bruno Oliveira", email = "nicoddemus@gmail.com"},
]
dependencies = [
"pytest>=6.2.5",
]
dynamic = ["version"]
requires-python = ">=3.9"
readme = "README.rst"
license = {text = "MIT"}
keywords = ["pytest", "mock"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
]
[project.urls]
Homepage = "https://github.com/pytest-dev/pytest-mock/"
Documentation = "https://pytest-mock.readthedocs.io/en/latest/"
Changelog = "https://pytest-mock.readthedocs.io/en/latest/changelog.html"
Source = "https://github.com/pytest-dev/pytest-mock/"
Tracker = "https://github.com/pytest-dev/pytest-mock/issues"
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest-asyncio",
"tox",
]
[project.entry-points.pytest11]
pytest_mock = "pytest_mock"
[tool.setuptools.package-data]
pytest_mock = ["py.typed"]
[tool.setuptools_scm]
write_to = "src/pytest_mock/_version.py"
[tool.ruff.lint]
extend-select = ["I001"]
[tool.ruff.lint.isort]
force-single-line = true
known-third-party = ["src"]
|