From 93b67e0650ad2e80910714ca72fbfbfbfd03ad6c Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Jan 21 2025 13:10:54 +0000 Subject: Add pyproject.toml Only function it has now is that pip runs isolated build instead of non-isolated. setup.py stays untouched for being full-featured for older pythons. https://packaging.python.org/en/latest/guides/modernize-setup-py-project/#where-to-start --- diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e3d7c96 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,5 @@ +[build-system] +requires = [ + "setuptools" +] +build-backend = "setuptools.build_meta"