From d078befd33f7c0aabe5cc9717db13886cda40985 Mon Sep 17 00:00:00 2001 From: Jonathan Senecal Date: Mon, 12 Sep 2022 11:48:26 -0400 Subject: [PATCH] Introduce pyproject.toml - Tweaked to not break the existing codebase... too much --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..6d579b737 --- /dev/null +++ b/pyproject.toml @@ -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