-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 895 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
[project]
name = "hangman-solver-rs"
requires-python = ">=3.12"
license = { file = "LICENSE" }
keywords = ["hangman", "solver", "rust"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dynamic = ["version"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
bindings = "pyo3"
compatibility = "manylinux2014"
features = ["pyo3"]
profile = "release"
strip = true
python-source = "python"
module-name = "hangman_solver._solver"
# building wheel with: podman run --rm -v .:/io ghcr.io/pyo3/maturin build --release --compatibility manylinux_2_17