mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-26 18:14:51 +00:00
33 lines
826 B
TOML
33 lines
826 B
TOML
# SPDX-FileCopyrightText: © 2022-2024 Decompollaborate
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
[project]
|
|
name = "rabbitizer"
|
|
# Version should be synced with include/common/RabbitizerVersion.h
|
|
version = "1.9.6"
|
|
description = "MIPS instruction decoder"
|
|
# license = "MIT"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
authors = [
|
|
{ name="Anghelo Carvajal", email="angheloalf95@gmail.com" },
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/Decompollaborate/rabbitizer"
|
|
"Bug Tracker" = "https://github.com/Decompollaborate/rabbitizer/issues"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=65.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
packages = ["rabbitizer"]
|
|
|
|
[tool.setuptools.package-data]
|
|
rabbitizer = ["py.typed", "*.pyi", "**/*.pyi"]
|
|
|
|
[tool.cibuildwheel]
|
|
skip = ["cp36-*"]
|