From ce75db9a4e8107fa7299c24087879634075efe5c Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Mon, 15 Mar 2021 12:00:47 -0700 Subject: [PATCH] update cfg to run pylama against juniper dir, fix imports --- setup.cfg | 4 ++-- setup.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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"