From a7e58ac3a354e5476beb23200d968ec1cd9d0e7f Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Sun, 28 Jul 2019 07:09:40 +0200 Subject: [PATCH] Keep building packages via setuptools for now While it may make sense to switch to an alternate build system (such as Poetry) at some point, at this early stage it seems prudent to designate setuptools as the build system in pyproject.toml until the more modern build system tooling matures. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f27dc047..903e4532 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,5 +60,4 @@ markdown = ["markdown"] pelican = "pelican.__main__:main" [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["setuptools >= 40.6.0", "wheel"]