]> git.proxmox.com Git - mirror_zfs.git/blob - contrib/pyzfs/setup.py.in
Use ZFS version for pyzfs & drop unused reqs file
[mirror_zfs.git] / contrib / pyzfs / setup.py.in
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 #
16 from __future__ import absolute_import, division, print_function
17
18 from setuptools import setup, find_packages
19
20 setup(
21 name="pyzfs",
22 version="@VERSION@",
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",
32 "Programming Language :: Python :: 2",
33 "Programming Language :: Python :: 2.7",
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",
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 ],
56 python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,<4',
57 zip_safe=False,
58 test_suite="libzfs_core.test",
59 )
60
61 # vim: softtabstop=4 tabstop=4 expandtab shiftwidth=4