]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/setup.py
update sources to v12.1.3
[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 scripts = ['bin/ceph-volume', 'bin/ceph-volume-systemd'],
21 classifiers = [
22 'Environment :: Console',
23 'Intended Audience :: Information Technology',
24 'Intended Audience :: System Administrators',
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
33 )