-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from haizaar/master
Added PyPi packaging info
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,34 @@ | |
|
||
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.2.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'), | ||
) |