-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (40 loc) · 1.07 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
[tool.poetry]
name = "pytest_hoverfly"
version = "5.0.4"
description = "Simplify working with Hoverfly from pytest"
authors = ["Devops team at Wrike <[email protected]>"]
repository = "https://github.com/wrike/pytest-hoverfly"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/wrike/pytest-hoverfly"
keywords = ['hoverfly', 'pytest', 'tests']
exclude = ["tests", "*.tests"]
classifiers = [
"Framework :: Pytest"
]
[tool.poetry.dependencies]
python = "^3.7"
pytest = ">=5.0"
requests = ">=2.22.0"
docker = ">=5.0.3"
typing_extensions = ">=3.7.4"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
toml = ">=0.10"
isort = "^5.11"
pytest-cov = ">=2.7.1"
black = "^22.8.0"
[tool.poetry.plugins]
[tool.poetry.plugins."pytest11"]
"hoverfly" = "pytest_hoverfly.pytest_hoverfly"
[build-system]
requires = ["poetry>=1.0.3"]
build-backend = "poetry.masonry.api"
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
lines_after_imports = 2
force_grid_wrap = 3
forced_separate = ["pytest_hovefly"]
add_imports = "from __future__ import annotations"