]> git.proxmox.com Git - mirror_zfs.git/blame - contrib/pyzfs/setup.py
zfs receive and rollback can skew filesystem_count
[mirror_zfs.git] / contrib / pyzfs / setup.py
CommitLineData
85ce3f4f 1#
2# Copyright 2015 ClusterHQ
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
9de8c0cd 16from __future__ import absolute_import, division, print_function
6abf9225
AG
17
18from setuptools import setup, find_packages
19
20setup(
21 name="pyzfs",
85ce3f4f 22 version="1.0.0",
6abf9225
AG
23 description="Wrapper for libzfs_core",
24 author="ClusterHQ",
25 author_email="support@clusterhq.com",
26 url="http://pyzfs.readthedocs.org",
27 license="Apache License, Version 2.0",
28 classifiers=[
29 "Development Status :: 4 - Beta",
30 "Intended Audience :: Developers",
31 "License :: OSI Approved :: Apache Software License",
6e72a5b9 32 "Programming Language :: Python :: 2",
6abf9225 33 "Programming Language :: Python :: 2.7",
6e72a5b9
BB
34 "Programming Language :: Python :: 3",
35 "Programming Language :: Python :: 3.4",
36 "Programming Language :: Python :: 3.5",
37 "Programming Language :: Python :: 3.6",
38 "Programming Language :: Python :: 3.7",
6abf9225
AG
39 "Topic :: System :: Filesystems",
40 "Topic :: Software Development :: Libraries",
41 ],
42 keywords=[
43 "ZFS",
44 "OpenZFS",
45 "libzfs_core",
46 ],
47
48 packages=find_packages(),
49 include_package_data=True,
50 install_requires=[
51 "cffi",
52 ],
53 setup_requires=[
54 "cffi",
55 ],
6e72a5b9 56 python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,<4',
6abf9225
AG
57 zip_safe=False,
58 test_suite="libzfs_core.test",
59)
60
61# vim: softtabstop=4 tabstop=4 expandtab shiftwidth=4