Revision 5d70e1d5f413ef2ebca4f805e26b77c544a1e1ef authored by disconnect3d on 13 February 2019, 16:27:29 UTC, committed by disconnect3d on 13 February 2019, 16:27:29 UTC
This was an internal function used just once and it was recreated each
time the _consume was executed which can be slow.
1 parent c113a13
Raw File
setup.py
import os
from setuptools import setup, find_packages

on_rtd = os.environ.get('READTHEDOCS') == 'True'


def rtd_dependent_deps():
    # RTD tries to build z3, ooms, and fails to build.
    if on_rtd:
        return []
    else:
        return ['z3-solver']


# If you update native_deps please update the `REQUIREMENTS_TO_IMPORTS` dict in `utils/install_helper.py`
# (we need to know how to import a given native dependency so we can check if native dependencies are installed)
native_deps = [
    'capstone==4.0.1',
    'pyelftools',
    'unicorn',
]

extra_require = {
    'native': native_deps,
    'dev': native_deps + [
        'keystone-engine',
        'coverage',
        'nose',
        'Sphinx',
    ],
    # noks - no keystone
    'dev-noks': native_deps + [
        'coverage',
        'nose',
        'Sphinx',
    ],
    'redis': [
        'redis',
    ]
}


setup(
    name='manticore',
    description='Manticore is a symbolic execution tool for analysis of binaries and smart contracts.',
    url='https://github.com/trailofbits/manticore',
    author='Trail of Bits',
    version='0.2.4',
    packages=find_packages(exclude=['tests', 'tests.*']),
    python_requires='>=3.6',
    install_requires=[
        'pyyaml',
        # evm dependencies
        'pysha3',
        'prettytable',
        'pyevmasm==0.2.0',
        'rlp',
        'ply'
    ] + rtd_dependent_deps(),
    extras_require=extra_require,
    entry_points={
        'console_scripts': [
            'manticore = manticore.__main__:main'
        ]
    }
)
back to top