-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
44 lines (36 loc) · 903 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
41
42
43
44
[tool.poetry]
name = "docker-compose-diagram"
version = "0.6.0"
description = ""
authors = ["Sergei Konik <s.konik.dev@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.7"
PyYAML = "6.0.1"
diagrams = "0.23.3"
click = "^8.0.3"
dockerfile-parse = "^1.2.0"
rich = "^12.2.0"
safety = "2.3.5"
[tool.poetry.dev-dependencies]
Sphinx = "~4.3.0"
sphinx-rtd-theme = "^1.0.0"
flake8 = "^5.0.4"
bandit = "^1.7.4"
safety = "^2.3.1"
black = "^22.10.0"
isort = "^5.10.1"
pytest = "^7.1.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
compose-diagram = 'docker_compose_diagram:process_cli'
[tool.isort]
line_length = 100
sections = ["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
multi_line_output = 3
profile = "black"
src_paths = "."
lines_after_imports = 2