]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/setup.py
bump version to 18.2.4-pve3
[ceph.git] / ceph / src / ceph-volume / setup.py
1 from setuptools import setup, find_packages
2 import os
3
4
5 setup(
6 name='ceph-volume',
7 version='1.0.0',
8 packages=find_packages(),
9
10 author='',
11 author_email='contact@redhat.com',
12 description='Deploy Ceph OSDs using different device technologies like lvm or physical disks',
13 license='LGPLv2+',
14 keywords='ceph volume disk devices lvm',
15 url="https://github.com/ceph/ceph",
16 zip_safe = False,
17 install_requires='ceph',
18 dependency_links=[''.join(['file://', os.path.join(os.getcwd(), '../',
19 'python-common#egg=ceph-1.0.0')])],
20 tests_require=[
21 'pytest >=2.1.3',
22 'tox',
23 'ceph',
24 ],
25 entry_points = dict(
26 console_scripts = [
27 'ceph-volume = ceph_volume.main:Volume',
28 'ceph-volume-systemd = ceph_volume.systemd:main',
29 ],
30 ),
31 classifiers = [
32 'Environment :: Console',
33 'Intended Audience :: Information Technology',
34 'Intended Audience :: System Administrators',
35 'Operating System :: POSIX :: Linux',
36 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
37 'Programming Language :: Python',
38 'Programming Language :: Python :: 2.7',
39 'Programming Language :: Python :: 3.5',
40 'Programming Language :: Python :: 3.6',
41 ]
42 )