mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-29 09:22:02 +00:00
24 lines
894 B
Python
24 lines
894 B
Python
# SPDX-FileCopyrightText: © 2022 Decompollaborate
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from setuptools import setup, find_packages, Extension
|
|
|
|
|
|
setup(
|
|
name='rabbitizer',
|
|
version='0.1.0',
|
|
packages=find_packages(),
|
|
ext_modules=[
|
|
Extension(
|
|
# the qualified name of the extension module to build
|
|
'rabbitizer',
|
|
# the files to compile into our module relative to ``setup.py``
|
|
["rabbitizer/rabbitizer_module.c", "rabbitizer/rabbitizer_Instr.c",
|
|
"src/instructions/RabbitizerInstr_Disassemble.c", "src/instructions/RabbitizerInstr_ProcessUniqueId.c", "src/instructions/RabbitizerInstr.c",
|
|
"src/instructions/RabbitizerInstrDescriptor.c", "src/instructions/RabbitizerInstrId.c", "src/instructions/RabbitizerRegister.c",
|
|
"src/common/Utils.c"],
|
|
include_dirs=['include']
|
|
),
|
|
],
|
|
)
|