From 32b4691832c5e8fb7af1e29a0221db8865a56e49 Mon Sep 17 00:00:00 2001 From: Henrik Finsberg Date: Fri, 17 Nov 2023 08:42:20 +0100 Subject: [PATCH] Use setuptools rather than hatchling --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8406116..38a03e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=61.2"] +requires = ["setuptools>=64.4.0", "wheel", "pip>=22.3"] build-backend = "setuptools.build_meta" [project] @@ -26,6 +26,9 @@ docs = [ "sphinxcontrib-bibtex", ] +[tool.setuptools] +packages = [] + [tool.ruff] # Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default. select = ["E", "F"]