-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
27 lines (24 loc) · 888 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""setup.py file."""
from setuptools import find_packages, setup
__author__ = 'Jesus Mendez <[email protected]>'
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines()]
setup(
name="napalm-ruckus-fastiron",
version="1.0.26",
packages=find_packages(),
author="Jesus Mendez",
author_email="[email protected]",
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
classifiers=[
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
],
url="https://github.com/Static0verride/napalm-ruckus-fastiron",
include_package_data=True,
install_requires=reqs,
)