forked from Decompollaborate/spimdisasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.16 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
# SPDX-FileCopyrightText: © 2022-2023 Decompollaborate
# SPDX-License-Identifier: MIT
[project]
name = "spimdisasm"
# Version should be synced with spimdisasm/__init__.py
version = "1.19.1.dev0"
description = "MIPS disassembler"
# license = "MIT"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name="Anghelo Carvajal", email="[email protected]" },
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/Decompollaborate/spimdisasm"
"Bug Tracker" = "https://github.com/Decompollaborate/spimdisasm/issues"
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
spimdisasm = "spimdisasm.frontendCommon.FrontendUtilities:cliMain"
singleFileDisasm = "spimdisasm.singleFileDisasm:disassemblerMain"
disasmdis = "spimdisasm.disasmdis:disasmdisMain"
elfObjDisasm = "spimdisasm.elfObjDisasm:elfObjDisasmMain"
rspDisasm = "spimdisasm.rspDisasm:rspDisasmMain"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["build*"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools.package-data]
spimdisasm = ["py.typed"]
[tool.cibuildwheel]
skip = ["cp36-*"]