* Add extra deps to setup.py * Fix nose dep * lol wrong keystone * Fix readme * Update travis * Workaround capstone install bug * Use --no-binary in only pip install line * Fix another readme regression * Not again
24 lines
461 B
Python
24 lines
461 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='Manticore',
|
|
version='0.1.0',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'capstone',
|
|
'pyelftools',
|
|
'unicorn',
|
|
],
|
|
extras_require={
|
|
'dev': [
|
|
'keystone-engine',
|
|
'coverage',
|
|
'nose',
|
|
]
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'manticore = manticore.__main__:main'
|
|
]
|
|
}
|
|
) |