forked from vmware/alb-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (41 loc) · 1.85 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
42
43
44
import os
from setuptools import setup, find_packages
AVI_PIP_VERSION = ''
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='avimigrationtools',
version=AVI_PIP_VERSION,
packages=find_packages(exclude=['*sdk*']),
description='Avi Converter.',
url='http://avinetworks.com/',
author='Avi Networks',
author_email='[email protected]',
scripts=['avi/migrationtools/f5_converter/f5_converter.py',
'avi/migrationtools/netscaler_converter/netscaler_converter.py',
'avi/migrationtools/vs_filter.py',
'avi/migrationtools/gss_convertor/gss_convertor.py',
'avi/migrationtools/ace_converter/ace_converter.py',
'avi/migrationtools/config_patch.py',
'avi/migrationtools/ansible/avi_config_to_ansible.py',
'avi/migrationtools/f5_discovery.py'],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
include_package_data=True,
install_requires=['pyyaml', 'requests', 'pyparsing', 'paramiko', 'avisdk',
'pycrypto', 'ecdsa', 'pyOpenssl', 'nose-html-reporting',
'nose-testconfig', 'ConfigParser', 'xlsxwriter', 'jinja2',
'pandas', 'openpyxl', 'appdirs', 'pexpect',
'unittest2', 'networkx', 'xmltodict'],
package_data={'avi': ['*.cfg', '*.conf', '*.crt', '*.crl', '*.json',
'*.jinja', '*.key', '*.pem', '*.xml',
'*.yaml', '*.yml'],
'avi.migrationtools.gss_convertor.parser_files': [
"gslb_template.jinja"]
}
)