forked from netbox-community/netbox-napalm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (40 loc) · 843 Bytes
/
setup.cfg
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
[flake8]
max-line-length = 120
max-complexity = 18
ignore = E203, E266, W503
per-file-ignores = __init__.py:F401
exclude = .git,
__pycache__,
setup.py,
build,
dist,
docs,
releases,
.venv,
.tox,
.mypy_cache,
.pytest_cache,
.vscode,
.github,
# By default test codes will be linted.
# tests
[tox:tox]
isolated_build = true
envlist = py38, py39, py310, format, lint, build
[gh-actions]
python =
3.10: py310
3.9: py39
3.8: py38, format, lint, build
[bumpversion]
current_version = 0.1.6
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:netbox_napalm_plugin/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1