diff --git a/setup.cfg b/setup.cfg index 6382ccb..4c51954 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ sort = cover [pylama] linters = mccabe,pycodestyle,pylint -skip = tests/*,.nox/*,venv/*,build/*,private/*,docs/*,site/*,scrapli_cfg/platform/core/juniper_junos/* +skip = tests/*,.nox/*,venv/*,build/*,dist/*,private/*,docs/*,site/* [pylama:pycodestyle] max_line_length = 100 @@ -33,7 +33,7 @@ line_length = 100 multi_line_output = 3 include_trailing_comma = True known_first_party = scrapli -known_third_party = asyncssh,pytest,napalm +known_third_party = asyncssh,pytest [darglint] docstring_style = google diff --git a/setup.py b/setup.py index 9401230..296dca6 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ #!/usr/bin/env python """scrapli_cfg - configuration management with scrapli""" -import setuptools from pathlib import Path +import setuptools + __author__ = "Carl Montanari" __version__ = "2021.07.30a3"