summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2023-10-08 21:57:02 -0700
committerSam James <sam@gentoo.org>2023-10-12 06:04:06 +0100
commit78c8fbe8a35cd2926f37f21235c5d8b587efae46 (patch)
tree90e60104e244ef71e643753b43b083ed0d0f2775 /pyproject.toml
parenta12d24f99d03c3c4975d84d63083449cd8487ef9 (diff)
downloadgentoolkit-78c8fbe8a35cd2926f37f21235c5d8b587efae46.tar.gz
Migrate to PEP517 meson-python build
Bug: https://bugs.gentoo.org/909888 Signed-off-by: Zac Medico <zmedico@gentoo.org> Closes: https://github.com/gentoo/gentoolkit/pull/36 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml17
1 files changed, 17 insertions, 0 deletions
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']