forked from Kaminario/krest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (36 loc) · 1.59 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
#
# (c) 2015 Kaminario Technologies, Ltd.
#
# This software is licensed solely under the terms of the Apache 2.0 license,
# the text of which is available at http://www.apache.org/licenses/LICENSE-2.0.
# All disclaimers and limitations of liability set forth in the Apache 2.0 license apply.
#
from setuptools import setup
desc = """The Kaminario REST (krest) is a client library \
that provides ORM like interface for working with Kaminario K2 REST API"""
long_desc = """Krest is written in Python and is aimed to provide \
rapid enablement of managing and monitoring Kaminario K2 all-flash arrays using Python.
Please see the project homepage_ for full description.
.. _homepage: https://github.com/Kaminario/krest
"""
setup(name="krest",
version="1.3.1",
py_modules=["krest"],
install_requires=["requests >= 2.0.0"],
maintainer="Zaar Hai",
maintainer_email="[email protected]",
url="https://github.com/Kaminario/krest",
description=desc,
long_description=long_desc,
download_url="https://github.com/Kaminario/krest/releases",
license="Apache 2.0",
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'),
)