From 91ac0bd78498c9e8fb31e4bcbeff6949c92fdd84 Mon Sep 17 00:00:00 2001 From: Alvin Castro Date: Wed, 23 Sep 2020 10:16:53 -0700 Subject: [PATCH] Added setup.py for PyPi --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ab6bcd3 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="napalm-aruba-cx", + version="0.1.0", + author="Aruba Automation", + author_email="aruba-automation@hpe.com", + description="NAPALM drivers for Aruba AOS-CX Switches", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/napalm-automation-community/napalm-aruba-cx", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +)