-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (41 loc) · 1.4 KB
/
setup.py
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
# type: ignore
"""Super-duper comments about ZFS pools for QubesOS
TODO update this with more info
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="qubes-storage-zfs",
python_requires=">=3.8",
install_requires=["qubes", "pyzfs"],
extras_require={'pyzfs': 'pyzfs>=2.1.0', 'qubes': 'qubes>=4.1.0'},
version="0.3.1",
data_files=[
['/etc/qubes-rpc',['dom0/qubes-rpc/qubes.AskPassword']],
['/etc/qubes-rpc/policy', ['dom0/qubes-rpc/policy/qubes.AskPassword']],
['/etc/modules-load.d', ['dom0/modules-load.d/zfs-for-qubes.conf']],
['/etc/udev/rules.d',
['dom0/udev/70-qubes-storage-zfs-ignore-vm-zdev.rules']],
],
entry_points={
"qubes.storage":
[
'zfs_zvol = qubes_storage_zfs.zfs:ZFSQPool',
'zfs_encrypted = qubes_storage_zfs.zfs_encrypted:ZFSQEncryptedPool'
]
},
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
"Operating System :: QubesOS",
],
long_description_content_type="text/markdown",
description="ZFS pool storage for QubesOS VMs",
author="CFCS",
author_email="[email protected]",
url="https://github.com/cfcs/qubes-storage-zfs",
license="BSD License",
long_description=long_description,
packages=setuptools.find_packages(),
)