From 7ac0590c9c6203934c1cd76c2d94ae0faeedc1d9 Mon Sep 17 00:00:00 2001 From: Slobodchikov ID <83545518+StrangePineAplle@users.noreply.github.com> Date: Thu, 25 Jul 2024 20:00:37 +0800 Subject: [PATCH] Update setup.py Perhaps a stupid commit because you seem to have the logic for loading these libraries, but the "errant" and "Levenshtein" libraries are not loaded during installation and you have to download them manually. Also a small fix, although it could probably be done more elegantly. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index d153b15..59a15d8 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,8 @@ augmentex_path = os.path.join(setup_dir, "wheels/augmentex-1.0.3-py3-none-any.whl") requirements = [ + "Levenshtein", + "errant", "numpy", "pandas", "tqdm",