forked from snyk-labs/pysnyk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 830 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
[tool.poetry]
name = "pysnyk"
version = "0.3.0"
description = "A Python client for the Snyk API"
authors = [
"Gareth Rushgrove <garethr@snyk.io>",
]
license = "MIT"
packages = [
{ include = "snyk" },
]
readme = "README.md"
repository = "https://github.com/snyk-labs/pysnyk"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.22"
mashumaro = "^1.7"
poetry-version = "^0.1.3"
importlib_metadata = "^1.6.1"
[tool.poetry.dev-dependencies]
pytest = "^5.0"
pytest-black = "^0.3.10"
pytest-cov = "^2.7"
pytest-mypy = "^0.4.0"
requests-mock = "^1.7"
xlsxwriter = "^1.1.8"
pytest-isort = "^0.3.1"
black = "^19.10b0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"