-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Seperate cython bindings into seperate bindings package
- Loading branch information
1 parent
f29e4f9
commit f504d54
Showing
15 changed files
with
140 additions
and
463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
MANIFEST | ||
dist/ | ||
src/ | ||
capstone/lib | ||
capstone/include | ||
pyx/lib | ||
pyx/include | ||
pyx/*.c | ||
pyx/*.pyx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../python/capstone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Metadata-Version: 2.1 | ||
Name: capstone | ||
Version: 5.0.0.post1 | ||
Summary: Capstone disassembly engine | ||
Home-page: https://www.capstone-engine.org | ||
Author: Nguyen Anh Quynh | ||
Author-email: [email protected] | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Provides: capstone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
pyproject.toml | ||
setup.py | ||
capstone.egg-info/PKG-INFO | ||
capstone.egg-info/SOURCES.txt | ||
capstone.egg-info/dependency_links.txt | ||
capstone.egg-info/top_level.txt | ||
pyx/__init__.py | ||
pyx/aarch64.pyx | ||
pyx/aarch64_const.pyx | ||
pyx/alpha.pyx | ||
pyx/alpha_const.pyx | ||
pyx/arm.pyx | ||
pyx/arm_const.pyx | ||
pyx/bpf.pyx | ||
pyx/bpf_const.pyx | ||
pyx/ccapstone.pyx | ||
pyx/evm.pyx | ||
pyx/evm_const.pyx | ||
pyx/hppa.pyx | ||
pyx/hppa_const.pyx | ||
pyx/m680x.pyx | ||
pyx/m680x_const.pyx | ||
pyx/m68k.pyx | ||
pyx/m68k_const.pyx | ||
pyx/mips.pyx | ||
pyx/mips_const.pyx | ||
pyx/mos65xx.pyx | ||
pyx/mos65xx_const.pyx | ||
pyx/ppc.pyx | ||
pyx/ppc_const.pyx | ||
pyx/riscv.pyx | ||
pyx/riscv_const.pyx | ||
pyx/sh.pyx | ||
pyx/sh_const.pyx | ||
pyx/sparc.pyx | ||
pyx/sparc_const.pyx | ||
pyx/systemz.pyx | ||
pyx/sysz_const.pyx | ||
pyx/tms320c64x.pyx | ||
pyx/tms320c64x_const.pyx | ||
pyx/tricore.pyx | ||
pyx/tricore_const.pyx | ||
pyx/wasm.pyx | ||
pyx/wasm_const.pyx | ||
pyx/x86.pyx | ||
pyx/x86_const.pyx | ||
pyx/xcore.pyx | ||
pyx/xcore_const.pyx | ||
pyx/include/capstone/aarch64.h | ||
pyx/include/capstone/alpha.h | ||
pyx/include/capstone/arm.h | ||
pyx/include/capstone/arm64.h | ||
pyx/include/capstone/bpf.h | ||
pyx/include/capstone/capstone.h | ||
pyx/include/capstone/cs_operand.h | ||
pyx/include/capstone/evm.h | ||
pyx/include/capstone/hppa.h | ||
pyx/include/capstone/loongarch.h | ||
pyx/include/capstone/m680x.h | ||
pyx/include/capstone/m68k.h | ||
pyx/include/capstone/mips.h | ||
pyx/include/capstone/mos65xx.h | ||
pyx/include/capstone/platform.h | ||
pyx/include/capstone/ppc.h | ||
pyx/include/capstone/riscv.h | ||
pyx/include/capstone/sh.h | ||
pyx/include/capstone/sparc.h | ||
pyx/include/capstone/systemz.h | ||
pyx/include/capstone/tms320c64x.h | ||
pyx/include/capstone/tricore.h | ||
pyx/include/capstone/wasm.h | ||
pyx/include/capstone/x86.h | ||
pyx/include/capstone/xcore.h | ||
pyx/lib/libcapstone.a | ||
pyx/lib/libcapstone.dylib | ||
tests/test_aarch64.py | ||
tests/test_all.py | ||
tests/test_alpha.py | ||
tests/test_arm.py | ||
tests/test_basic.py | ||
tests/test_bpf.py | ||
tests/test_customized_mnem.py | ||
tests/test_detail.py | ||
tests/test_evm.py | ||
tests/test_hppa.py | ||
tests/test_iter.py | ||
tests/test_lite.py | ||
tests/test_m680x.py | ||
tests/test_m68k.py | ||
tests/test_mips.py | ||
tests/test_mos65xx.py | ||
tests/test_ppc.py | ||
tests/test_riscv.py | ||
tests/test_sh.py | ||
tests/test_skipdata.py | ||
tests/test_sparc.py | ||
tests/test_systemz.py | ||
tests/test_tms320c64x.py | ||
tests/test_tricore.py | ||
tests/test_wasm.py | ||
tests/test_x86.py | ||
tests/test_xcore.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
capstone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "cython"] | ||
build-backend = "setuptools.build_meta" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../python/tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
Oops, something went wrong.