-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# SPDX-FileCopyrightText: © 2022-2024 Decompollaborate
# SPDX-License-Identifier: MIT
[project]
name = "rabbitizer"
# Version should be synced with include/common/RabbitizerVersion.h
version = "1.16.0"
description = "MIPS instruction decoder"
# license = "MIT"
readme = "README.md"
requires-python = ">=3.4"
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>=43.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]
enable = [
# Include all PyPy versions
"pypy", "pypy-eol",
]