From 78c8fbe8a35cd2926f37f21235c5d8b587efae46 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 8 Oct 2023 21:57:02 -0700 Subject: Migrate to PEP517 meson-python build Bug: https://bugs.gentoo.org/909888 Signed-off-by: Zac Medico Closes: https://github.com/gentoo/gentoolkit/pull/36 Signed-off-by: Sam James --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fae23b5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = 'gentoolkit' +dynamic = ['version'] +description = 'Collection of administration scripts for Gentoo' +readme = 'README.md' +requires-python = '>=3.9' +license = {file = "COPYING"} +authors = [ + {name = 'Gentoo Portage tools team', email = 'tools-portage@gentoo.org'}, +] + +[build-system] +build-backend = 'mesonpy' +requires = ['meson-python'] + +[tool.meson-python.args] +setup = ['-Dsystem-wide=false'] -- cgit v1.2.3