forked from programa-stic/hexag00n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (19 loc) · 737 Bytes
/
setup.py
File metadata and controls
25 lines (19 loc) · 737 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
from setuptools import setup
setup(
name = 'hexag00n',
description = "A collection of reverse engineering tools for the Qualcomm Digital Signal Proccesor (QDSP6)",
url = 'https://github.com/programa-stic/hexag00n',
version = '0.1',
license = 'BSD 2-Clause',
packages = ['hexagondisasm'],
package_data = {
'hexagondisasm': [
'data/instruction_templates.pkl',
# List of instruction templates needed by the disassembler.
'data/factorial_example.elf',
# Simple Hexagon binary (factorial example from the SDK) to test the disassembler.
],
},
install_requires = ['future', 'pyelftools'],
zip_safe = False,
)