summaryrefslogtreecommitdiffstats
path: root/src/ceph-volume/plugin/zfs/setup.py
blob: 31f6998f9f416fc1c8a90b803622cae4c53bc5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""The setup script."""

from setuptools import setup, find_packages

requirements = [ ]

setup_requirements = [ ]

setup(
    author="Willem Jan Withagen",
    author_email='wjw@digiware.nl',
    classifiers=[
        'Development Status :: 2 - Pre-Alpha',
        'Environment :: Console',
        'Intended Audience :: Information Technology',
        'Intended Audience :: System Administrators',
        'Operating System :: POSIX :: FreeBSD',
        'License :: OSI Approved :: BSD License',
        'Natural Language :: English',
        "Programming Language :: Python :: 2",
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
    ],
    description="Manage Ceph OSDs on ZFS pool/volume/filesystem",
    install_requires=requirements,
    license="BSD license",
    include_package_data=True,
    keywords='ceph-volume-zfs',
    name='ceph-volume-zfs',
    packages=find_packages(include=['ceph_volume_zfs']),
    setup_requires=setup_requirements,
    url='https://github.com/ceph/ceph/src/ceph-volume/plugin/zfs',
    version='0.1.0',
    zip_safe=False,
    entry_points = dict(
        ceph_volume_handlers = [
            'zfs = ceph_volume_zfs.zfs:ZFS',
        ],
    ),
)