2 # Copyright 2015 ClusterHQ
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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.
16 from setuptools
import setup
, find_packages
19 srcdir
= "@abs_top_srcdir@/contrib/pyzfs"
24 description
="Wrapper for libzfs_core",
26 author_email
="support@clusterhq.com",
27 url
="http://pyzfs.readthedocs.org",
28 license
="Apache License, Version 2.0",
30 "Development Status :: 4 - Beta",
31 "Intended Audience :: Developers",
32 "License :: OSI Approved :: Apache Software License",
33 "Programming Language :: Python :: 3",
34 "Programming Language :: Python :: 3.6",
35 "Programming Language :: Python :: 3.7",
36 "Programming Language :: Python :: 3.8",
37 "Programming Language :: Python :: 3.9",
38 "Programming Language :: Python :: 3.10",
39 "Topic :: System :: Filesystems",
40 "Topic :: Software Development :: Libraries",
48 packages
=find_packages(where
=srcdir
),
49 package_dir
={"": os
.path
.relpath(srcdir
)},
50 include_package_data
=True,
57 python_requires
='>=3.6,<4',
59 test_suite
="libzfs_core.test",
62 # vim: softtabstop=4 tabstop=4 expandtab shiftwidth=4