changeset 690:dec978cad4d1

Add a pyproject.toml for newer setuptools/pip
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 10 Jun 2023 22:29:57 +0200
parents e06c4480b7d7
children 4643f801379e
files MANIFEST.in pyproject.toml
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/MANIFEST.in	Sat Jun 10 22:24:27 2023 +0200
+++ b/MANIFEST.in	Sat Jun 10 22:29:57 2023 +0200
@@ -1,4 +1,4 @@
-include .hg* *.txt requirement*
+include .hg* *.txt requirement* pyproject.toml
 include configmix/*.c configmix/*.h
 graft docs
 graft tests
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pyproject.toml	Sat Jun 10 22:29:57 2023 +0200
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["setuptools>=67.0", "wheel>=0.38"]
+build-backend = "setuptools.build_meta"