From 05f4cb7325ea778fcd75fdbb56a050f0e2f20048 Mon Sep 17 00:00:00 2001 From: Alexandre Muller Date: Tue, 9 Jan 2024 14:57:35 +0100 Subject: [PATCH] pyproject.toml: move build-system info to the corresponding place Build-system info are useless in setup.cfg --- pyproject.toml | 3 +++ setup.cfg | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fed528d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg index 2e5a4b4..3ad7b2f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,8 +37,5 @@ exclude = tests* docs* -[build-system] -requires = ["setuptools"] - [zest.releaser] create-wheel = yes