Add pyproject file for Python source distribution

This is now required for pip and similar tools to correctly build
and install a setuptools based package.
This commit is contained in:
Neal Gompa 2021-05-18 06:46:32 -04:00
parent 80d64246a6
commit c02873b347
1 changed files with 6 additions and 0 deletions

6
pyproject.toml Normal file
View File

@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=39.2",
"wheel"
]
build-backend = "setuptools.build_meta"