-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
24 lines (23 loc) · 889 Bytes
/
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
from setuptools import setup
setup(
name='python-cephclient',
packages=['cephclient'],
version='0.1.0.5',
url='https://github.com/dmsimard/python-cephclient',
author='David Moreau Simard',
author_email='[email protected]',
description='A client library in python for the Ceph REST API.',
long_description=open('README.rst', 'rt').read(),
license='Apache License, Version 2.0',
keywords='ceph rest api ceph-rest-api client library',
install_requires=['lxml>=3.2.5', 'requests>=2.2.1'],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
]
)