Skip to content

Commit

Permalink
Merge pull request #3 from haizaar/master
Browse files Browse the repository at this point in the history
Added PyPi packaging info
  • Loading branch information
haizaar committed Apr 8, 2015
2 parents c4a0a8d + 6bb9fb6 commit ef61b7c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
)

0 comments on commit ef61b7c

Please sign in to comment.