forked from PureStorage-OpenConnect/py-pure-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (30 loc) · 1.14 KB
/
setup.py
File metadata and controls
37 lines (30 loc) · 1.14 KB
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
# coding: utf-8
# flake8: noqa
'''
Pure Storage Python clients for FlashArray, FlashBlade, and Pure1 APIs
'''
from setuptools import setup, find_packages # noqa: H301
NAME = 'py-pure-client'
VERSION = '1.6.0'
REQUIRES = ['urllib3 >= 1.15', 'six >= 1.10', 'certifi >= 14.05.14',
'python-dateutil >= 2.5.3', 'paramiko >= 2.4.2',
'PyJWT >= 1.7.1', 'requests >= 2.20.1']
readme = open('README.md', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name=NAME,
version=VERSION,
description='Pure Storage Python clients for FlashArray, FlashBlade, and Pure1 APIs',
author='Pure Storage',
author_email='tvilcu@purestorage.com',
url='https://github.com/PureStorage-OpenConnect/py-pure-client',
download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.6.0.tar.gz',
keywords=['Swagger', 'Pure Storage', 'Python', 'clients', 'REST', 'API', 'FlashArray', 'FlashBlade', 'Pure1'],
license='BSD 2-Clause',
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description=README_TEXT,
long_description_content_type='text/markdown'
)