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.
This commit is contained in:
Justin Mayer 2019-07-28 07:09:40 +02:00
commit a7e58ac3a3

View file

@ -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"]