]> git.proxmox.com Git - ceph.git/blob - ceph/src/python-common/setup.py
bump version to 15.2.4-pve1
[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 'six',
22 ),
23 classifiers = [
24 'Intended Audience :: Developer',
25 'Operating System :: POSIX :: Linux',
26 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
27 'Programming Language :: Python',
28 'Programming Language :: Python :: 2.7',
29 'Programming Language :: Python :: 3.5',
30 'Programming Language :: Python :: 3.6',
31 ]
32 )