Files
lifting-bits-mcsema/tools/setup.py
T
Alessandro Gario 1a96bd3712 Update links and remotes to the new organization name (#598)
* Docs: Update links with the new organization name

* CI/Travis: Update remotes with the new organization name

* mcsema-disass: Update links with the new organization name

* Dockerfile: Update remotes with the new organization name
2019-10-27 12:56:23 -04:00

37 lines
1.3 KiB
Python
Executable File

#!/usr/bin/env python
# Copyright (c) 2017 Trail of Bits, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
os.chdir(os.path.dirname(os.path.abspath(__file__)))
from setuptools import setup, find_packages
setup(name="mcsema-disass",
description="Binary program disassembler for McSema.",
version="2.0",
url="https://github.com/lifting-bits/mcsema",
author="Trail of Bits",
author_email="mcsema@trailofbits.com",
license='Apache 2.0',
packages=['mcsema_disass', 'mcsema_disass.ida', 'mcsema_disass.ida7', 'mcsema_disass.defs', 'mcsema_disass.binja'],
install_requires=['protobuf==3.2.0', 'python-magic'],
package_data={
"mcsema_disass.defs": ["linux.txt", "windows.txt"]},
entry_points={
"console_scripts": [
"mcsema-disass = mcsema_disass.__main__:main"
]})