fix: build-time warning

Installing from source triggers a warning on pip 23.0.1 if
pyproject.toml is not present. Building does not require any special
dependencies, so we just add a simple pyproject.toml file.

Close #836
This commit is contained in:
Régis Behmo 2023-05-17 10:29:32 +02:00
parent f042ca9b90
commit de0093aa8d
1 changed files with 2 additions and 0 deletions

2
pyproject.toml Normal file
View File

@ -0,0 +1,2 @@
[build-system]
requires = ["setuptools", "wheel"]