forked from avatartwo/avatar2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.06 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
from setuptools import setup
from sys import version_info
setup(
name='avatar2',
version='1.4.6',
packages=['avatar2',
'avatar2/archs',
'avatar2/targets',
'avatar2/protocols',
'avatar2/peripherals',
'avatar2/plugins',
'avatar2/plugins/arm',
'avatar2/installer'
],
install_requires=[
'enum34;python_version<"3.4"',
'pygdbmi==0.9.0.2;python_version<="3.5"',
'pygdbmi>=0.10.0.0;python_version>"3.5"',
'cached_property;python_version<="3.8"',
'intervaltree',
'posix_ipc>=1.0.0',
'capstone>=3.0.4',
'keystone-engine',
'parse',
'configparser',
'npyscreen',
'unicorn',
'bitstring',
'pylink-square',
'pyusb',
],
include_package_data=True,
url='https://github.com/avatartwo/avatar2',
description='A Dynamic Multi-Target Orchestration Framework',
maintainer='Marius Muench',
maintainer_email='marius.muench@eurecom.fr'
)