-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
74 lines (61 loc) · 1.57 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
[tool.poetry]
name = "dobles"
version = "4.0.2"
description = "Test dobles for Python."
authors = ["Jimmy Cuadra <[email protected]>", "Todd Sifleet <[email protected]>"]
maintainers = ["Todd Sifleet <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/smartfastlabs/dobles"
license = "MIT"
keywords = [
"testing",
"test dobles",
"mocks",
"mocking",
"stubs",
"stubbing",
]
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python",
"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",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Testing",
]
packages = [
{ include = "dobles" },
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
flake8 = "*"
black = "23.9.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest-asyncio = "*"
pytest = "8.0.2"
coverage = "*"
coveralls = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx="7.2.6"
sphinx_rtd_theme="1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[flake8]
max-line-length = 100
max-complexity = 10
[tool.pytest]
addopts = "--tb native --assert plain"
[tool.poetry.plugins.pytest11]
dobles = "dobles.pytest_plugin"