-
Notifications
You must be signed in to change notification settings - Fork 112
/
pyproject.toml
97 lines (89 loc) · 2.47 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[tool.poetry]
name = "ntc-ansible"
version = "1.1.0"
description = "Multi-vendor Ansible Collection for Network Automation"
authors = ["Network to Code <opensource@networktocode.com>"]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "^3.7.2"
pyntc = "^1.0.0"
jsonschema = "^4.17.3"
ansible = "^2.9"
jdiff = "^0.0.2"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
flake8 = "*"
bandit = "^1.7.4"
yamllint = "^1.26.3"
invoke = "^1.7.1"
toml = "^0.10.2"
pydocstyle = "^6.1.1"
pylint = "^2.14.4"
voluptuous = "^0.13.1"
pytest = "^7.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
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.basic]
# No docstrings required for private methods (Pylint default), or for test_ functions, or for inner Meta classes.
no-docstring-rgx="^(_|test_|Meta$)"
good-names="i,ip,j,k,ex,Run,_"
[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,
consider-iterating-dictionary,
too-few-public-methods,
invalid-name,
consider-using-f-string,
bare-except,
duplicate-code,
missing-module-docstring,
no-value-for-parameter,
wrong-import-position,
import-error
"""
[tool.pylint.miscellaneous]
# Don't flag TODO as a failure, let us commit with things that still need to be done in the code
notes = """,
FIXME,
XXX,
"""
[tool.pytest.ini_options]
python_paths = "./"
testpaths = "tests/"
addopts = "-vv --doctest-modules -p no:warnings --ignore-glob='*mock*'"
[tool.pydocstyle]
convention = "google"
inherit = false
match = "(?!__init__).*\\.py"
match-dir = "(?!tests|migrations|development)[^\\.].*"
# D212 is enabled by default in google convention, and complains if we have a docstring like:
# """
# My docstring is on the line after the opening quotes instead of on the same line as them.
# """
# We've discussed and concluded that we consider this to be a valid style choice.
add_ignore = "D212,D100"