forked from wiremock/python-wiremock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
86 lines (78 loc) · 2.16 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
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "wiremock"
version = "2.6.1"
description = "Wiremock Admin API Client"
authors = ["Cody Lee <[email protected]>", "Mike Waites <[email protected]>"]
license = "OSI Approved :: Apache Software License"
packages = [{include = "wiremock"}]
readme = "README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Environment :: Other Environment",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.7 | ^3.8 | ^3.9 | ^3.10 | ^3.11"
requests = "^2.20.0"
importlib-resources = "^5.12.0"
docker = {version = "^6.1.0", optional = true}
testcontainers = {version = "^3.7.1", optional = true}
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
coverage = "^7.2.3"
pytest-coverage = "^0.0"
python-coveralls = "^2.9.3"
responses = "^0.23.1"
tox = "^4.4.12"
watchdog = "^3.0.0"
wheel = "^0.40.0"
pytest = "^7.3.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.3.0"
markdown_include = "^0.8.1"
[tool.poetry.extras]
testing = ["docker", "testcontainers"]
[tool.pytest.ini_options]
markers = [
"unit: marks tests as unit tests",
"mappings",
"nearmisses",
"resource",
"serialization",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
include = '\.pyi?$'
line-length = 88