Add build backend to pyproject.toml

Adding a build-backend key forces PEP 517 with pip >= 19.0, and so it
was left off while there was no PEP 517 support. Now that we have some
tentative PEP 517 support, we can explicitly add this key.
This commit is contained in:
Paul Ganssle 2019-04-24 10:39:19 -04:00
parent f42ee00980
commit 789c0b842b
No known key found for this signature in database
GPG Key ID: CD54FCE3D964BEFB
1 changed files with 1 additions and 0 deletions

View File

@ -1,2 +1,3 @@
[build-system]
requires = ["setuptools", "wheel", "setuptools_rust>=0.10.2", "toml"]
build-backend = "setuptools.build_meta"