From c8178bf2cd5dca820dd5e061dc6149e7de950762 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:32:44 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9fd37e..5375723 100644 --- a/setup.py +++ b/setup.py @@ -19,10 +19,12 @@ cwd = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(cwd, "matcha", "VERSION"), encoding="utf-8") as fin: version = fin.read().strip() + def get_requires(): requirements = os.path.join(os.path.dirname(__file__), "requirements.txt") with open(requirements, encoding="utf-8") as reqfile: - return [str(r).strip() for r in reqfile] + return [str(r).strip() for r in reqfile] + setup( name="matcha-tts",