-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (44 loc) · 1.67 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
57
# SPDX-FileCopyrightText: © 2023-2024 Decompollaborate
# SPDX-License-Identifier: MIT
[project]
name = "ipl3checksum"
# Version should be synced with src/ipl3checksum/__init__.py, Cargo.toml and src/rs/version.rs
version = "1.2.0"
description = "Library to calculate the IPL3 checksum for N64 ROMs"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["IPL3", "CIC", "checksum", "N64", "Nintendo 64"]
authors = [
{ name="Anghelo Carvajal", email="[email protected]" },
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/Decompollaborate/ipl3checksum"
Issues = "https://github.com/Decompollaborate/ipl3checksum/issues"
Changelog = "https://github.com/Decompollaborate/ipl3checksum/blob/master/CHANGELOG.md"
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project.scripts]
ipl3checksum = "ipl3checksum.__main__:ipl3checksumMain"
[tool.cibuildwheel]
skip = ["cp36-*"]
[tool.setuptools.package-data]
ipl3checksum = ["py.typed"]
[tool.maturin]
features = ["pyo3/extension-module", "python_bindings"]
# https://github.com/PyO3/maturin/blob/0dee40510083c03607834c821eea76964140a126/Readme.md#mixed-rustpython-projects
python-source = "src"