From bb5f3b2c651c4caf4c50d1a6724ffc1cbaf5741f Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 29 Nov 2024 09:49:30 -0300 Subject: [PATCH] Configure build-system in project.toml This is considered modern and good practice. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e69de29..593ec60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +build-backend = "setuptools.build_meta" +requires = ["setuptools"]