From f10dbf6ab1717e84db7733df9c0b21658ee68f9b Mon Sep 17 00:00:00 2001 From: Barabazs <31799121+Barabazs@users.noreply.github.com> Date: Tue, 25 Mar 2025 18:48:57 +0100 Subject: [PATCH] fix: update setuptools configuration to include package discovery for whisperx --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9249fd9..4b6c236 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,5 +29,8 @@ whisperx = "whisperx.transcribe:cli" requires = ["setuptools"] [tool.setuptools] -packages = ["whisperx"] include-package-data = true + +[tool.setuptools.packages.find] +where = ["."] +include = ["whisperx*"] \ No newline at end of file