Add pyproject.toml

This commit is contained in:
rany 2021-06-06 01:13:22 +03:00
parent 8765dcf1c8
commit 23abad46be
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,4 +5,5 @@
!README.md
!setup.cfg
!setup.py
!pyproject.toml
!src/edgeTTS/__init__.py

6
pyproject.toml Normal file
View File

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