forked from dell/python-powerstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 705 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 705 Bytes
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
# -*- coding: utf-8 -*-
# Copyright: (c) 2019, Dell Technologies
"""Setup file for PowerStore SDK"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='PyPowerStore',
version='2.1.0.0',
description='Python Library for Dell PowerStore',
author='Ansible Team at Dell',
author_email='ansible.team@dell.com',
install_requires=[
'urllib3>=1.26.7',
'requests>=2.23.0'
],
license_files = ('LICENSE',),
classifiers=['License :: OSI Approved :: Apache Software License'],
url='https://github.com/dell/python-powerstore',
packages=['PyPowerStore', 'PyPowerStore.utils'],
)