-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (49 loc) · 970 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
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "lxc-manager"
version = "0.1.0"
description = ""
authors = ["Mathieu <mathieu.collet@gmail.com>"]
[tool.poetry.scripts]
lxcm = "lxc_manager.lxc_manager:main"
[tool.poetry.dependencies]
python = "^3.10"
proxmoxer = "^2.0.1"
python-dotenv = "^1.0.0"
PyYAML = "^6.0"
paramiko = "^3.1.0"
colorlog = "^6.7.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
[tool.black]
line-length = 88
target-version = ['py38']
exclude = '''
/(
\.git
| \.venv
| __pycache__
| \.pytest_cache
| \.mypy_cache
| \.tox
| \.nox
| .*\.egg-info
| \.dist-info
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
[tool.flake8]
ignore = ['E203', 'E266', 'E501', 'W503']
max-line-length = 88
max-complexity = 18
select = ['B','C','E','F','W','T4','B9']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"