]> git.proxmox.com Git - ceph.git/blame - ceph/src/ceph-volume/setup.py
import 15.2.5
[ceph.git] / ceph / src / ceph-volume / setup.py
CommitLineData
d2e6a577 1from setuptools import setup, find_packages
f6b5b4d7 2import os
d2e6a577
FG
3
4
5setup(
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,
f6b5b4d7
TL
17 install_requires='ceph',
18 dependency_links=[''.join(['file://', os.path.join(os.getcwd(), '../',
19 'python-common#egg=ceph-1.0.0')])],
d2e6a577
FG
20 tests_require=[
21 'pytest >=2.1.3',
22 'tox',
f6b5b4d7 23 'ceph',
d2e6a577 24 ],
91327a77
AA
25 entry_points = dict(
26 console_scripts = [
27 'ceph-volume = ceph_volume.main:Volume',
28 'ceph-volume-systemd = ceph_volume.systemd:main',
29 ],
30 ),
d2e6a577
FG
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 ]
d2e6a577 42)