-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Bruno Oliveira <[email protected]>
- Loading branch information
1 parent
0bbe7b7
commit b7fb4ac
Showing
3 changed files
with
56 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,59 @@ requires = [ | |
] | ||
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 = "[email protected]"}, | ||
] | ||
dependencies = [ | ||
"pytest>=6.2.5", | ||
] | ||
dynamic = ["version"] | ||
requires-python = ">=3.8" | ||
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.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"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"] | ||
|
||
|