From 3e657007d2794310fb262aeabadab65cfe511fac Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 12 Nov 2024 15:57:17 +0100 Subject: [PATCH] PEP 621: Migrate from setup.py to pyproject.toml --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ae405b256..21b90e737 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,3 +44,11 @@ version = { attr = "whisper.version.__version__" } [tool.setuptools.packages.find] exclude = [ "tests*" ] namespaces = false + +[tool.black] + +[tool.isort] +profile = "black" +include_trailing_comma = true +line_length = 88 +multi_line_output = 3