forked from avatarone/avatar-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (36 loc) · 1.22 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
#!/usr/bin/env python3
from __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
from builtins import open
from future import standard_library
standard_library.install_aliases()
from distutils.core import setup
setup(
name='avatar',
version='0.1.0dev1',
author='Jonas Zaddach',
author_email='[email protected]',
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/tests',
'avatar/configuration',
'avatar/configuration/parser',
'avatar/targets/openocd',
'avatar/targets/superspeedjtag',
'avatar/events'],
url='http://www.s3.eurecom.fr/tools/avatar/',
license='Apache License 2.0',
description='Dynamic firmware analysis',
long_description=open('README.rst').read()
)