-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
56 lines (44 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
# SPDX-FileCopyrightText: © 2022-2024 Decompollaborate
# SPDX-License-Identifier: MIT
[project]
name = "spimdisasm"
# Version should be synced with spimdisasm/__init__.py
version = "1.32.1"
description = "MIPS disassembler"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{ name="Anghelo Carvajal", email="angheloalf95@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Disassemblers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dynamic = ["dependencies"]
[project.urls]
Repository = "https://github.com/Decompollaborate/spimdisasm"
Issues = "https://github.com/Decompollaborate/spimdisasm/issues"
Changelog = "https://github.com/Decompollaborate/spimdisasm/blob/master/CHANGELOG.md"
[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-*"]