netmiko and config files

This commit is contained in:
Pieprzycki Piotr
2016-11-05 23:40:11 +01:00
parent 9d933d748f
commit 681797fc6d
5 changed files with 75 additions and 31 deletions

View File

@@ -14,3 +14,11 @@
"""napalm_vyos package."""
from vyos import VyOSDriver
import pkg_resources
try:
__version__ = pkg_resources.get_distribution('napalm-vyos').version
except pkg_resources.DistributionNotFound:
__version__ = "Not installed"
__all__ = ('VyOSDriver',)