From 4cb76cc3f91153671cc3f9a952404dea573e1105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20And=C3=A9n?= Date: Tue, 20 Jun 2023 10:19:35 -0600 Subject: [PATCH] Add dependencies in setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 25d5dbc..f3f90aa 100644 --- a/setup.py +++ b/setup.py @@ -23,5 +23,9 @@ 'Programming Language :: Python :: 3', ], packages=find_packages(), - install_requires=[], + install_requires=["numpy", + "scipy", + "numba", + "packaging", + "psutil"], )