mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-13 00:10:42 +03:00
37 lines
815 B
Diff
37 lines
815 B
Diff
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,14 +1,14 @@
|
|
[build-system]
|
|
-# https://thiblahute.gitlab.io/mesonpep517/
|
|
-build-backend = "mesonpep517.buildapi"
|
|
+build-backend = "mesonpy"
|
|
requires = [
|
|
"cython",
|
|
"wheel",
|
|
- "mesonpep517 @ git+https://gitlab.com/SpotlightKid/mesonpep517.git@rtmidi",
|
|
+ "meson-python",
|
|
"ninja"
|
|
]
|
|
|
|
[project]
|
|
+name = "python-rtmidi"
|
|
description = "A Python binding for the RtMidi C++ library implemented using Cython."
|
|
authors = [
|
|
{ name="Christopher Arndt", email="info@chrisarndt.de" },
|
|
@@ -41,11 +41,12 @@
|
|
"music",
|
|
"rtmidi",
|
|
]
|
|
-meson-python-option-name = "python"
|
|
-meson-options = [
|
|
+
|
|
+[tool.meson-python.args]
|
|
+setup = [
|
|
"-Dwheel=true",
|
|
"-Dverbose=false",
|
|
- "--buildtype=plain"
|
|
+ "-Dbuildtype=plain"
|
|
]
|
|
|
|
[project.license]
|