-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.03 KB
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pytest-mockito"
dynamic = ["version"]
description = "Base fixtures for mockito"
readme = "README.rst"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "herr kaste", email = "herr.kaste@gmail.com" },
]
dependencies = [
"pytest>=6",
"mockito>=1.0.6",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://github.com/kaste/pytest-mockito"
[project.entry-points.pytest11]
mockito = "pytest_mockito.plugin"
[tool.uv]
package = true
[dependency-groups]
dev = ["pytest"]
[tool.hatch.version]
source = "vcs"