forked from scanapi/scanapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.69 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
[tool.poetry]
name = "scanapi"
version = "2.10.2"
description = "Automated Testing and Documentation for your REST API"
authors = ["The ScanAPI Organization <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/scanapi/scanapi"
homepage = "https://scanapi.dev/"
keywords = ["python", "scanapi", "tests", "end2end", "endtoend", "integration tests", "json", "apis", "api rest"]
[tool.poetry.scripts]
scanapi = "scanapi:main"
[tool.poetry.dependencies]
python = ">=3.9,<4.0.0"
appdirs = "^1.4.4"
curlify2 = "^1.0.1"
MarkupSafe = "2.1.2"
rich = "13.3.5"
PyYAML = "~6.0.2"
Jinja2 = "~3.1.0"
click = ">=8.1.3"
httpx = "^0.24.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "5.0.0"
pytest-freezegun = "0.4.2"
pytest-mock = "^3.14.0"
black = "24.10.0"
sphinx = "4.3.2"
sphinx_rtd_theme = ">=0.5,<1.3"
pre-commit = { version = "4.0.1", python = ">=3.9" }
isort = "^5.13.2"
bandit = "^1.7.10"
pytest-it = "^0.1.5"
flake8 = "7.1.1"
mypy = "1.11.2"
types-requests = "^2.32.0"
types-PyYAML = "~6.0.12"
types-setuptools = ">=67.7,<69.0"
requests-mock = "1.12.1"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.flake8]
# ignore line length check and warnings
ignore = "E501,W501,E231,W503"
exclude = ".git,__pycache__,docs/source/conf.py,old,build,dist"
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
ignore_missing_imports = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[tool.pytest.ini_options]
addopts="--it"
[build-system]
requires = ["poetry>=1.0.9", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"