forked from tsypuk/multicloud-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.13 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
[tool.poetry]
name = "multicloud-diagrams"
version = "0.3.20"
description = "Library to generate DRAW.IO compatible diagrams to represent Cloud infrastructure. AWS Cloud supported."
authors = ["Roman Tsypuk <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "multicloud_diagrams"}]
[tool.poetry.dependencies]
python = "^3.7"
pyyaml = "^6.0"
[tool.poetry.dev-dependencies]
flakehell = "^0.9.0"
flake8 = "3.9.0"
[tool.poetry.group.dev.dependencies]
git-changelog = "^1.0.1"
jinja2 = "^3.1.2"
[tool.flakehell]
exclude = ["README.md", "./venv/", "./docs"]
format = "colored"
max_line_length = 88
show_source = true
[tool.flakehell.plugins]
flake8-bandit = ["+*", "-S322"]
flake8-bugbear = ["+*"]
flake8-builtins = ["+*"]
flake8-comprehensions = ["+*"]
flake8-darglint = ["+*"]
flake8-docstrings = ["+*"]
flake8-eradicate = ["+*"]
flake8-isort = ["+*"]
flake8-mutable = ["+*"]
flake8-pytest-style = ["+*"]
flake8-spellcheck = ["+*"]
mccabe = ["+*"]
pep8-naming = ["+*"]
pycodestyle = ["+*", "-E501"]
pyflakes = ["+*"]
pylint = ["+*"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"