-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 976 Bytes
/
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
[tool.poetry]
name = "network-replay"
version = "0.1.0"
description = "Records and replays network interactions"
authors = ["Sam Morgan <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
httpretty = "^1.1.4"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
requests = "^2.31.0"
ruff = "^0.4.4"
[tool.poetry.group.test.dependencies]
httpx = "^0.25.2"
pillow = "^10.1.0"
pytest-cov = "^4.1.0"
urllib3 = "^2.1.0"
mypy = "^1.10.0"
types-pyyaml = "^6.0.12.20240311"
types-requests = "^2.31.0.20240406"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest]
testpaths = "tests"
[tool.pytest.ini_options]
addopts = ["--cov=network_replay", "--cov-report=term-missing:skip-covered"]
markers = [
"network_replay: Records network interactions and verifies them on replay",
]
[tool.coverage.run]
branch = true
omit = ["tests/*"]
[tool.coverage.report]
exclude_also = ["if TYPE_CHECKING:"]