-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
David Barroso <dbarroso@spotify.com> | ||
David Barroso <dbarrosop@dravetech.com> | ||
Elisa Jasinska <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ If you prefer SLACK feel free to join the ``NAPALM`` channel on slack at [networ | |
|
||
Authors | ||
======= | ||
* David Barroso ([dbarroso@dravetech.com](mailto:[email protected])) | ||
* David Barroso ([dbarrosop@dravetech.com](mailto:[email protected])) | ||
* Elisa Jasinska ([[email protected]](mailto:[email protected])) | ||
* Many others, check the [contributors](https://github.com/napalm-automation/napalm/graphs/contributors) page for details. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ logger = logging.getLogger('eos_install_config') | |
DOCUMENTATION = ''' | ||
--- | ||
module: napalm_install_config | ||
author: David Barroso <[email protected]> | ||
author: David Barroso <[email protected]> | ||
version_added: "1.0.0" | ||
short_description: Replaces the configuration taken from a file on a device supported by NAPALM. | ||
description: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import uuid | ||
|
||
__author__ = 'David Barroso <[email protected]>' | ||
__author__ = 'David Barroso <[email protected]>' | ||
from setuptools import setup, find_packages | ||
from pip.req import parse_requirements | ||
|
||
|
@@ -13,15 +13,15 @@ | |
version="0.50.1", | ||
packages=find_packages(), | ||
author="David Barroso", | ||
author_email="[email protected]", | ||
author_email="[email protected]", | ||
description="Network Automation and Programmability Abstraction Layer with Multivendor support", | ||
classifiers=[ | ||
'Topic :: Utilities', | ||
'Programming Language :: Python', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS', | ||
], | ||
url="https://github.com/spotify/napalm", | ||
url="https://github.com/napalm-automation/napalm", | ||
include_package_data=True, | ||
install_requires = reqs, | ||
entry_points=''' | ||
|