From e08349b58621c79a24f7205fbe10cff430d9e199 Mon Sep 17 00:00:00 2001 From: Ryan Gibson Date: Mon, 3 Jun 2024 23:25:58 -0400 Subject: [PATCH] Add tqdm dependency --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 678b6b0..51d4351 100644 --- a/setup.py +++ b/setup.py @@ -34,5 +34,5 @@ ], python_requires='>=3.8, <4', install_requires=['leidenalg', 'matplotlib', "numpy", 'psutil', 'igraph', - "scikit-learn", "scipy>=1.7", 'seaborn'] + "scikit-learn", "scipy>=1.7", 'seaborn', 'tqdm'] )