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