manticore/setup.py
Mark Mossberg b591f2a83a Add unicorn to required deps (#31)
* Add unicorn to python deps

* Update readme

* Add deps to setup.py

* test letting pip install install deps in travis
2017-03-01 11:22:04 -05:00

17 lines
330 B
Python

from setuptools import setup, find_packages
setup(
name='Manticore',
version='0.1.0',
packages=find_packages(),
install_requires=[
'capstone',
'pyelftools',
'unicorn'
],
entry_points={
'console_scripts': [
'manticore = manticore.__main__:main'
]
}
)