forked from OpenIxia/ixnetwork_restpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 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
import os
from setuptools import setup
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, 'README.md')) as fid:
long_description = fid.read()
with open(os.path.join(base_dir, 'version.txt')) as fid:
version_number = fid.read()
setup(
name='ixnetwork_restpy',
version=version_number,
description='IxNetwork REST API Python Client',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/OpenIxia/ixnetwork_restpy',
author='Keysight ISG IxNetwork team',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
keywords='ixnetwork l2l3 test tool ixia automation',
packages=['ixnetwork_restpy'],
include_package_data=True,
python_requires='>=2.7, <4',
install_requires=['requests'],
tests_require=['mock'],
test_suite='ixnetwork_restpy.tests'
)