forked from avatarone/avatar-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (25 loc) · 840 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (25 loc) · 840 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 python3
from distutils.core import setup
setup(
name='avatar',
version='0.1.0dev1',
author='Jonas Zaddach',
author_email='zaddach@eurecom.fr',
packages=[ 'avatar',
'avatar/bintools',
'avatar/bintools.gdb',
'avatar/targets',
'avatar/plugins',
'avatar/util',
'avatar/interfaces',
'avatar/interfaces/gdb',
'avatar/interfaces/avatar_stub',
'avatar/emulators',
'avatar/emulators/s2e',
'avatar/communicators',
'avatar/exploitgenerators'],
url='http://www.s3.eurecom.fr/tools/avatar/',
license='Apache License 2.0',
description='Dynamic firmware analysis',
long_description=open('README.rst').read()
)