-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pyo3 feature and expose structs that spimdisasm will re-expose
- Loading branch information
1 parent
1bb6af3
commit 5760504
Showing
16 changed files
with
403 additions
and
137 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,39 @@ | ||
# SPDX-FileCopyrightText: © 2022-2025 Decompollaborate | ||
# SPDX-License-Identifier: MIT | ||
|
||
[project] | ||
name = "rabbitizer" | ||
# Version should be synced with include/common/RabbitizerVersion.h | ||
version = "2.0.0-dev0" | ||
description = "MIPS instruction decoder" | ||
readme = "README.md" | ||
license = {file = "../../LICENSE"} | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name="Anghelo Carvajal", email="[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
|
||
"License :: OSI Approved :: MIT License", | ||
|
||
"Topic :: Software Development :: Disassemblers", | ||
|
||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
|
||
"Typing :: Typed", | ||
] | ||
|
||
[project.urls] | ||
"Repository" = "https://github.com/Decompollaborate/rabbitizer" | ||
"Bug Tracker" = "https://github.com/Decompollaborate/rabbitizer/issues" | ||
# "Changelog" = "" | ||
|
||
[build-system] | ||
requires = ["maturin>=1,<2"] | ||
build-backend = "maturin" | ||
|
||
[tool.maturin] | ||
features = ["pyo3/extension-module", "pyo3"] | ||
cargo-extra-args = "--crate-type=cdylib" |
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
Oops, something went wrong.