Add minimal pyproject.toml

This commit is contained in:
Hugo van Kemenade 2023-05-27 11:52:03 +03:00
parent 26e0c81ffb
commit 454dfcc1b4
2 changed files with 16 additions and 0 deletions

View File

@ -49,6 +49,7 @@ repos:
hooks:
- id: check-merge-conflict
- id: check-json
- id: check-toml
- id: check-yaml
- repo: https://github.com/sphinx-contrib/sphinx-lint
@ -56,6 +57,16 @@ repos:
hooks:
- id: sphinx-lint
- repo: https://github.com/tox-dev/pyproject-fmt
rev: 0.11.2
hooks:
- id: pyproject-fmt
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.13
hooks:
- id: validate-pyproject
- repo: https://github.com/tox-dev/tox-ini-fmt
rev: 1.3.0
hooks:

5
pyproject.toml Normal file
View File

@ -0,0 +1,5 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2",
]