-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (44 loc) · 1.51 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
44
45
46
47
from setuptools import setup, find_packages
with open('Readme.md', encoding='utf-8') as f:
readme = f.read()
setup(
name='verity-squash-root',
version='0.3.5',
description='Build a signed efi binary which mounts a '
'verified squashfs image as rootfs',
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Linux :: Arch Linux',
'Operating System :: Linux :: Debian',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Security :: Cryptography',
'System :: Filesystems',
'System :: Boot :: Init'
],
author='Simon Brand',
author_email='simon.brand@postadigitale.de',
url='https://github.com/brandsimon/verity-squash-root',
keywords='Secure boot, squashfs, dm-verity',
package_dir={'': 'src'},
packages=find_packages('src/'),
include_package_data=True,
zip_safe=False,
extras_require={
'dev': ['pycodestyle', 'pyflakes'],
},
install_requires=[],
entry_points={
'console_scripts': [
'verity-squash-root=verity_squash_root:parse_params_and_run'
]
},
)