forked from angr/claripy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 785 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
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')]
if bytes is str:
raise Exception("This module is designed for python 3 only. Please install an older version to use python 2.")
setup(
name='claripy',
version='8.19.7.25',
python_requires='>=3.5',
packages=packages,
install_requires=[
'z3-solver>=4.8.5.0',
'future',
'cachetools',
'pysmt',
],
description='An abstraction layer for constraint solvers',
url='https://github.com/angr/claripy',
)