proof-of-concept of the experimental python3.6 version (manticore only)

This commit is contained in:
ggrieco-tob
2018-08-08 09:01:02 -03:00
parent 462fcfb274
commit b473726781
3 changed files with 12 additions and 11 deletions
+2 -2
View File
@@ -30,11 +30,11 @@ setuptools.setup(
author_email="peter@trailofbits.com",
license="Apache-2.0",
keywords="tdd testing symbolic execution",
install_requires=['claripy==7.8.6.16','angr==7.8.7.1', 'manticore'],
install_requires=[], #'claripy==7.8.6.16','angr==7.8.7.1', 'manticore'],
entry_points={
'console_scripts': [
'deepstate = deepstate.main_manticore:main',
'deepstate-angr = deepstate.main_angr:main',
#'deepstate-angr = deepstate.main_angr:main',
'deepstate-manticore = deepstate.main_manticore:main',
]
})