diff --git a/MANIFEST.in b/MANIFEST.in index d789cfb..426be82 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/setup.py b/setup.py index cbafb6c..dd3edd3 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,4 @@ """setup.py file.""" - -import uuid - from setuptools import setup, find_packages with open("requirements.txt", "r") as fs: @@ -9,21 +6,27 @@ __author__ = 'Locus Li ' +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="locus@byto.top", - 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,