-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
44 lines (36 loc) · 1.49 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
# coding: utf-8
"""
Pure Storage FlashBlade REST 1.12 Python SDK
Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions 1.0 - 1.12. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
OpenAPI spec version: 1.3
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import sys
from setuptools import setup, find_packages
NAME = "purity-fb"
VERSION = "1.12.3"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
# If any of these requirements are changed, we also need to update `requirements.md`
REQUIRES = ["urllib3 >= 1.26.5", "six >= 1.10", "certifi", "python-dateutil"]
PYTHON_REQUIRES = ">=2.7, >=3.4"
setup(
name=NAME,
version=VERSION,
description="Pure Storage FlashBlade REST 1.12 Python SDK",
author_email="[email protected]",
url="",
keywords=["Swagger", "Purity//FB REST Client"],
install_requires=REQUIRES,
python_requires=PYTHON_REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions 1.0 - 1.12. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
"""
)