-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (66 loc) · 2.14 KB
/
pyproject.toml
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
68
69
70
71
72
73
74
[project]
name = "mocksafe"
version = "0.9.0-beta"
description = "A mocking library developed to enable static and runtime type checking of your mocks to keep them in sync with production code."
requires-python = ">= 3.9"
readme = "README.rst"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Testing :: Unit",
"Framework :: Pytest",
"Typing :: Typed",
]
keywords = [
"mock",
"mocking",
"typed",
"typing",
"typesafe",
"testing",
"tests",
"mocks",
"magicmock",
"unittest",
"stubbing",
]
dependencies = []
[project.urls]
Documentation = "https://mocksafe.readthedocs.io/en/0.6/"
Source = "https://github.com/dmayo3/mocksafe"
[project.optional-dependencies]
pytest = ["pytest >= 6.2.0"]
docs = ["sphinx-rtd-theme >= 1.2.0", "pytest >= 6.2.0"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project.entry-points.pytest11]
mocksafe = "mocksafe.plugin"
[tool.bumpver]
current_version = "0.9.0-beta"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"mocksafe/__init__.py" = ['__version__ = "{version}"']
"README.rst" = ['MockSafe v{version}']