forked from nongiach/arm_now
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 744 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 744 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
27
from setuptools import setup, Extension
import sys
if sys.version.startswith("2"):
print >>sys.stderr, "arm_now is only for python3 => pip3 install arm_now"
sys.exit(1)
setup(name='arm_now',
version='1.24',
author='@chaign_c',
url='https://github.com/nongiach/arm_now',
packages=['arm_now'],
py_modules=['arm_now'],
entry_points = {
'console_scripts': [
'arm_now = arm_now:main',
],
},
install_requires=[
'exall',
'requests',
'docopt',
'pySmartDL',
'python-magic'
],
keywords = ['emulator', 'arm', 'mips', 'powerpc', 'x86', 'qemu']
)