2024-01-28 15:16:11 +00:00
|
|
|
# SPDX-FileCopyrightText: © 2022-2024 Decompollaborate
|
2022-06-06 02:09:25 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2022-12-16 14:04:16 +00:00
|
|
|
[project]
|
|
|
|
name = "rabbitizer"
|
|
|
|
# Version should be synced with include/common/RabbitizerVersion.h
|
2024-12-16 13:23:20 +00:00
|
|
|
version = "1.12.5"
|
2022-12-16 14:04:16 +00:00
|
|
|
description = "MIPS instruction decoder"
|
2024-07-19 20:05:05 +00:00
|
|
|
# license = "MIT"
|
2022-12-16 14:04:16 +00:00
|
|
|
readme = "README.md"
|
2024-12-15 23:27:28 +00:00
|
|
|
requires-python = ">=3.9"
|
2022-12-16 14:04:16 +00:00
|
|
|
authors = [
|
2022-12-18 18:15:39 +00:00
|
|
|
{ name="Anghelo Carvajal", email="angheloalf95@gmail.com" },
|
2022-12-16 14:04:16 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://github.com/Decompollaborate/rabbitizer"
|
|
|
|
"Bug Tracker" = "https://github.com/Decompollaborate/rabbitizer/issues"
|
|
|
|
|
2022-06-06 02:09:25 +00:00
|
|
|
[build-system]
|
2022-12-16 14:04:16 +00:00
|
|
|
requires = ["setuptools>=65.0", "wheel"]
|
2022-07-09 18:48:56 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|
2022-06-10 18:50:23 +00:00
|
|
|
|
2022-12-16 14:04:16 +00:00
|
|
|
[tool.setuptools]
|
|
|
|
include-package-data = true
|
|
|
|
packages = ["rabbitizer"]
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
|
|
rabbitizer = ["py.typed", "*.pyi", "**/*.pyi"]
|
|
|
|
|
2022-06-10 18:50:23 +00:00
|
|
|
[tool.cibuildwheel]
|
|
|
|
skip = ["cp36-*"]
|