forked from onekey-sec/ubi_reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (22 loc) · 780 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (22 loc) · 780 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.6.0'
setup(
name='ubi_reader',
version=version,
description='Extract files from UBI and UBIFS images.',
author='Jason Pruitt',
author_email='jrspruitt@gmail.com',
url='https://github.com/jrspruitt/ubi_reader',
long_description='Collection of Python scripts for reading information about and extracting data from UBI and UBIFS images.',
platforms=['Linux'],
license='GNU GPL',
keywords='UBI UBIFS',
requires=['lzo'],
packages = find_packages(),
scripts=['scripts/ubireader_display_info',
'scripts/ubireader_extract_files',
'scripts/ubireader_extract_images',
'scripts/ubireader_utils_info'
],
)