From c20c4c939e8ed03660c677ae949caf36cbdee35f Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Thu, 27 Mar 2025 16:51:07 +0100 Subject: [PATCH] global: Add pyproject.toml for Python scripts --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000..73236d845b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[tool.black] +line-length = 89 +target-version = ['py39'] + +[tool.isort] +profile = "black" -- 2.47.3