-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
33 lines (28 loc) · 960 Bytes
/
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
# SPDX-FileCopyrightText: © 2022-2024 Decompollaborate
# SPDX-License-Identifier: MIT
[project]
name = "mapfile_parser"
version = "2.7.1"
description = "Map file parser library focusing decompilation projects"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"requests"
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
"Homepage" = "https://github.com/Decompollaborate/mapfile_parser"
"Bug Tracker" = "https://github.com/Decompollaborate/mapfile_parser/issues"
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[tool.cibuildwheel]
skip = ["cp36-*"]
[tool.maturin]
features = ["pyo3/extension-module", "python_bindings"]
# https://github.com/PyO3/maturin/blob/0dee40510083c03607834c821eea76964140a126/Readme.md#mixed-rustpython-projects
python-source = "src"