forked from scanapi/scanapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.12 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
[tool.poetry]
name = "scanapi"
version = "2.4.0"
description = "Automated Testing and Documentation for your REST API"
authors = ["Camila Maia <[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.6.1"
click = "7.1.2"
jinja2 = "2.11.2"
pyyaml = "5.3.1"
requests = "2.24.0"
appdirs = "^1.4.4"
curlify2 = "^1.0.0"
[tool.poetry.dev-dependencies]
codecov = "2.1.7"
pytest = "6.1.0"
pytest-cov = "2.10.0"
pytest-freezegun = "0.4.1"
pytest-mock = "3.2.0"
requests-mock = "1.8.0"
black = "19.10b0"
sphinx = "3.1.2"
sphinx_rtd_theme = "^0.5.0"
pre-commit = "2.6.0"
isort = "^5.5.3"
bandit = "^1.6.2"
pytest-it = "^0.1.4"
flake8 = "3.8.4"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
addopts="--it"
[build-system]
requires = ["poetry>=1.0.9", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"