]> git.proxmox.com Git - mirror_zfs.git/blame - contrib/pyzfs/setup.py
Import pyzfs source code from ClusterHQ
[mirror_zfs.git] / contrib / pyzfs / setup.py
CommitLineData
6abf9225
AG
1# Copyright 2015 ClusterHQ. See LICENSE file for details.
2
3from setuptools import setup, find_packages
4
5setup(
6 name="pyzfs",
7 version="0.2.3",
8 description="Wrapper for libzfs_core",
9 author="ClusterHQ",
10 author_email="support@clusterhq.com",
11 url="http://pyzfs.readthedocs.org",
12 license="Apache License, Version 2.0",
13 classifiers=[
14 "Development Status :: 4 - Beta",
15 "Intended Audience :: Developers",
16 "License :: OSI Approved :: Apache Software License",
17 "Programming Language :: Python :: 2 :: Only",
18 "Programming Language :: Python :: 2.7",
19 "Topic :: System :: Filesystems",
20 "Topic :: Software Development :: Libraries",
21 ],
22 keywords=[
23 "ZFS",
24 "OpenZFS",
25 "libzfs_core",
26 ],
27
28 packages=find_packages(),
29 include_package_data=True,
30 install_requires=[
31 "cffi",
32 ],
33 setup_requires=[
34 "cffi",
35 ],
36 zip_safe=False,
37 test_suite="libzfs_core.test",
38)
39
40# vim: softtabstop=4 tabstop=4 expandtab shiftwidth=4