-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 829 Bytes
/
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
try:
from setuptools import setup
from setuptools import find_packages
packages = find_packages()
except ImportError:
from distutils.core import setup
import os
packages = [x.strip('./').replace('/','.') for x in os.popen('find -name "__init__.py" | xargs -n1 dirname').read().strip().split('\n')]
setup(
name='angr',
version='6.7.6.9',
description='The next-generation binary analysis platform from UC Santa Barbara\'s Seclab!',
packages=packages,
install_requires=[
'capstone>=3.0.5rc2',
'networkx',
'futures',
'progressbar',
'mulpyplexer',
'cooldict',
'ana',
'archinfo>=6.7.6.9',
'pyvex>=6.7.6.9',
'claripy>=6.7.6.9',
'simuvex>=6.7.6.9',
'cle>=6.7.6.9',
'cachetools',
],
)