From 183c1cd0bbf53260cf837ba230dac0bd73f17bc4 Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Sun, 24 Nov 2024 12:11:20 -0500 Subject: [PATCH] Add pyproject.toml file and simplify 'make install' Makefile logic --- Makefile | 2 +- pyproject.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/Makefile b/Makefile index 6857f2bf..591d89c8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY=install install: - pip install -e . --config-settings editable_mode=compat + pip install -e . python tmd/download_prerequisites.py .PHONY=clean diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..f2c07bfb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=64.0"] +build-backend = "setuptools.build_meta"