forked from HPENetworking/hpe-cw7-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.23 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
37
38
39
40
41
from distutils.core import setup
from setuptools import find_packages
setup(
name='pyhpecw7',
packages=find_packages(),
version='0.0.11',
description='Python package to simplify working with HPE Comware7 Based devices ',
author='HPE',
license='Apache2',
url='https://github.com/hpenetworking/pyhpecw7',
download_url='https://github.com/hpenetworking/pyhpecw7/tarball/0.0.9',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='HPE Comware7 FlexFabric Netconf API ',
package_data={'pyhpecw7': ['utils/templates/textfsm_temps/*.tmpl']},
install_requires=[
'textfsm==1.1.0',
'lxml',
'ncclient',
'scp',
'ipaddr>=2.1.11',
'paramiko'
],
)