forked from dell/PyU4V
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.21 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
from setuptools import setup
setup(name='PyU4V',
version='3.0.0.4',
url='https://github.com/ciarams87/PyU4V/',
author='Dell Inc. or its subsidiaries',
author_email='[email protected]',
description=("A Python library for use with Dell EMC's Unisphere for "
"VMAX RestAPI."),
license='MIT',
packages=['PyU4V', 'PyU4V.utils'],
install_requires=['requests', 'six', 'urllib3'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules', ],
tests_require=['mock', 'testtools'],
test_suite='tests'
)