Add explicit deepstate-manticore executor script

This matches the command-line API described in the paper, and lets users
invoke the Manticore backend without relying on the fact that it is the
default (which might change).
This commit is contained in:
Joe Ranweiler
2018-02-19 18:23:58 -08:00
parent a4cb4f4127
commit b7aca2196c

View File

@@ -34,6 +34,7 @@ setuptools.setup(
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',
]
})