Merge pull request #10338 from jsenecal/10298-pyproject-toml

Introduce pyproject.toml
This commit is contained in:
Jeremy Stretch 2022-09-12 12:56:41 -04:00 committed by GitHub
commit e3576e2614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
pyproject.toml Normal file
View File

@ -0,0 +1,13 @@
# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/
[tool.black]
line-length = 120
target_version = ['py38', 'py39', 'py310']
skip-string-normalization = true
[tool.isort]
profile = "black"
[tool.pylint]
max-line-length = 120