-
Notifications
You must be signed in to change notification settings - Fork 31
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
2 changed files
with
12 additions
and
9 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,3 +1,3 @@ | ||
include requirements.txt | ||
include napalm_vrp/templates/*.j2 | ||
include napalm_vrp/utils/textfsm_templates/*.tpl | ||
include napalm_huawei_vrp/templates/*.j2 | ||
include napalm_huawei_vrp/utils/textfsm_templates/*.tpl |
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,29 +1,32 @@ | ||
"""setup.py file.""" | ||
|
||
import uuid | ||
|
||
from setuptools import setup, find_packages | ||
|
||
with open("requirements.txt", "r") as fs: | ||
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))] | ||
|
||
__author__ = 'Locus Li <[email protected]>' | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="napalm-vrp", | ||
version="0.1.0", | ||
name="napalm-huawei-vrp", | ||
version="0.1.2", | ||
packages=find_packages(), | ||
author="Locus Li", | ||
author_email="[email protected]", | ||
description="Network Automation and Programmability Abstraction Layer with Multi-vendor support,Driver for Huawei VRP Campus Network Switch", | ||
description="Network Automation and Programmability Abstraction Layer with Multi-vendor support,Driver for Huawei Campus Network Switch,VRP OS", | ||
long_description_content_type="text/markdown", | ||
long_description=long_description, | ||
|
||
classifiers=[ | ||
'Topic :: Utilities', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS', | ||
'Operating System :: Linux', | ||
], | ||
url="https://github.com/napalm-automation-community/napalm-huawei-vrp", | ||
include_package_data=True, | ||
|