forked from napalm-automation-community/napalm-sros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.02 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
33
34
35
36
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="napalm-sros",
version="1.0.0",
packages=find_packages(),
author="Nokia",
author_email="",
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
classifiers=[
'Topic :: Utilities',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Development Status :: 4 - Beta',
],
url="https://github.com/napalm-automation/napalm-sros",
include_package_data=True,
install_requires=[
"napalm>=3.3.1",
"pytest>=5.4.3",
"setuptools>=47.3.1",
"pip>=20.1.1",
"textfsm>=1.1.0",
"paramiko>=2.7.1",
"lxml>=4.6.2",
"ncclient>=0.6.7",
"xmltodict>=0.12.0",
"dictdiffer>=0.9.0",
],
python_requires=">=3.6",
long_description=long_description,
long_description_content_type="text/markdown",
)