forked from nautobot/nautobot-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (72 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "nautobot_ansible_modules"
version = "5.0.1"
description = "Ansible collection to interact with Nautobot's API"
authors = ["Network to Code <[email protected]>"]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "^3.9"
netutils = "^1.2"
pynautobot = "^2.0.1"
ansible-core = "^2.14"
[tool.poetry.dev-dependencies]
black = "*"
coverage = "^6.5"
cryptography = "*"
jinja2 = "*"
jmespath = "*"
jsondiff = "*"
pytest = "*"
pytest-mock = "*"
pytest-xdist = "*"
pyyaml = "*"
mock = "^4.0.2"
importlib-metadata = "1.7.0"
pylint = "^2.6.0"
sphinx_rtd_theme = "*"
hypothesis = "^6.8.0"
pynautobot = "^2.0"
pytest-pythonpath = "^0.7.3"
parameterized = "^0.8.1"
invoke = "^1.6.0"
bandit = "^1.7.0"
antsibull = "^0.45.1"
antsibull-docs = "^1.7.3"
pytest-forked = "^1.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
python_paths = "./"
addopts = "-vv"
[tool.black]
line-length = 160
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| settings.py # This is where you define files that should not be stylized by black
# the root of the project
)
'''
[tool.pylint.messages_control]
# Line length is enforced by Black, so pylint doesn't need to check it.
# Pylint and Black disagree about how to format multi-line arrays; Black wins.
disable = """,
line-too-long
"""