]> git.proxmox.com Git - ceph.git/blob - ceph/src/python-common/setup.py
import 15.2.5
[ceph.git] / ceph / src / python-common / setup.py
1 from setuptools import setup, find_packages
2
3
4 with open("README.rst", "r") as fh:
5 long_description = fh.read()
6
7
8 setup(
9 name='ceph',
10 version='1.0.0',
11 packages=find_packages(),
12 author='',
13 author_email='dev@ceph.io',
14 description='Ceph common library',
15 long_description=long_description,
16 license='LGPLv2+',
17 keywords='ceph',
18 url="https://github.com/ceph/ceph",
19 zip_safe = False,
20 install_requires=(
21 'pyyaml',
22 'six',
23 ),
24 classifiers = [
25 'Intended Audience :: Developer',
26 'Operating System :: POSIX :: Linux',
27 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
28 'Programming Language :: Python',
29 'Programming Language :: Python :: 2.7',
30 'Programming Language :: Python :: 3.5',
31 'Programming Language :: Python :: 3.6',
32 ]
33 )