-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (27 loc) · 1.07 KB
/
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
28
29
30
31
32
"""setup.py file."""
# import uuid
from setuptools import setup, find_packages
__author__ = 'Robin Guillat <[email protected]>'
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))]
setup(
name="napalm-oneaccess-oneos",
version="0.1.3",
packages=find_packages(),
author="Robin Guillat",
author_email="[email protected]",
description="NAPALM driver for Ekinops OneAccess devices over Telnet or SSH",
long_description="NAPALM driver for Ekinops OneAccess devices"
"Connection to the device is done through a SSH or telnet connection using the netmiko librairy.",
classifiers=[
'Topic :: Utilities',
"Topic :: System :: Networking",
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
"Operating System :: Microsoft :: Windows"
],
url="https://github.com/napalm-automation/napalm-oneaccess_oneos",
include_package_data=True,
install_requires=reqs,
)