rabbitizer/pyproject.toml

33 lines
819 B
TOML
Raw Normal View History

2022-06-06 02:09:25 +00:00
# SPDX-FileCopyrightText: © 2022 Decompollaborate
# SPDX-License-Identifier: MIT
2022-12-16 14:04:16 +00:00
[project]
name = "rabbitizer"
# Version should be synced with include/common/RabbitizerVersion.h
version = "1.4.0"
description = "MIPS instruction decoder"
# license = "MIT"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name="Anghelo Carvajal", email="angheloalf@gmail.com" },
]
[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-12-16 14:04:16 +00:00
[tool.setuptools]
include-package-data = true
packages = ["rabbitizer"]
[tool.setuptools.package-data]
rabbitizer = ["py.typed", "*.pyi", "**/*.pyi"]
[tool.cibuildwheel]
skip = ["cp36-*"]