Skip to content

Commit

Permalink
release version v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tkspuk committed Apr 25, 2020
1 parent 87cce22 commit df2247a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
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
17 changes: 10 additions & 7 deletions setup.py
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,
Expand Down

0 comments on commit df2247a

Please sign in to comment.