mirror of
https://github.com/lifting-bits/mcsema
synced 2026-06-08 15:31:09 +00:00
577130de8a
Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 3.2.0 to 3.15.0. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/master/generate_changelog.py) - [Commits](https://github.com/protocolbuffers/protobuf/compare/v3.2.0...v3.15.0) --- updated-dependencies: - dependency-name: protobuf dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
1.7 KiB
Python
43 lines
1.7 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2020 Trail of Bits, Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import sys
|
|
|
|
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="3.1.{}.{}".format(sys.version_info.major, sys.version_info.minor),
|
|
url="https://github.com/lifting-bits/mcsema",
|
|
author="Trail of Bits",
|
|
author_email="mcsema@trailofbits.com",
|
|
license='AGPLv3',
|
|
packages=['mcsema_disass', 'mcsema_disass.ida7', 'mcsema_disass.defs'],
|
|
install_requires=['protobuf==3.15.0', 'python-magic'],
|
|
package_data={
|
|
"mcsema_disass.defs": ["linux.txt", "windows.txt"]},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"mcsema-disass = mcsema_disass.__main__:main",
|
|
"mcsema-disass-{} = mcsema_disass.__main__:main".format(sys.version_info.major),
|
|
"mcsema-disass-{}.{} = mcsema_disass.__main__:main".format(sys.version_info.major,
|
|
sys.version_info.minor),
|
|
]})
|