Skip to content

Commit

Permalink
Added setup.py for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
alvinc13 committed Sep 23, 2020
1 parent daf064c commit 91ac0bd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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',
)

0 comments on commit 91ac0bd

Please sign in to comment.