forked from ashah26/napalm-SROS-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 816 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
"""setup.py file."""
from setuptools import setup, find_packages
with open("requirements.txt", "r") as file:
reqs = [req for req in file.read().splitlines() if (len(req) > 0 and not req.startswith("#"))]
__author__ = 'Ashna Shah <[email protected]>'
setup(
name="napalm-sros",
version="0.1.0",
packages=find_packages(),
author="Ashna Shah",
author_email="[email protected]",
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
classifiers=[
'Topic :: Utilities',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
],
url="https://github.com/napalm-automation/napalm-sros",
include_package_data=True,
install_requires=reqs,
)