-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathsetup.py
48 lines (40 loc) · 1.38 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
setup(
name = "ubidump",
version = "1.0.0",
entry_points = {
'console_scripts': ['ubidump=ubidump:main'],
},
install_requires=[
"python-lzo>=1.11",
"crcmod>=1.7",
],
py_modules=['ubidump'],
author = "Willem Hengeveld",
author_email = "itsme@xs4all.nl",
description = "Commandline tool for viewing or extracting UBIFS images.",
long_description="""
This tool can be used to view or extract the contents of UBIFS images.
View the contents of the `/etc/passwd` file in the filesystem image `image.ubi`:
ubidump -c /etc/passwd image.ubi
List the files in all the volumes in `image.ubi`:
ubidump -l image.ubi
View the contents of b-tree database from the volumes in `image.ubi`:
ubidump -d image.ubi
""",
license = "MIT",
keywords = "ubifs commandline",
url = "https://github.com/nlitsme/ubidump/",
classifiers = [
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: System :: Filesystems',
],
)