From ecb822b9a8ca869a4c3994c3a14a1c141845626a Mon Sep 17 00:00:00 2001 From: Ewald de Wit Date: Mon, 12 Sep 2022 14:05:01 +0200 Subject: [PATCH] Add numba and eventkit dependencies, issue #2 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a7133b4..375651b 100644 --- a/setup.py +++ b/setup.py @@ -30,5 +30,6 @@ setup( 'gui_scripts': ['hifiscan=hifiscan.app:main'] }, python_requires=">=3.8", - install_requires=['numpy', 'PyQt5', 'pyqtgraph', 'sounddevice'] + install_requires=['eventkit', 'numba', 'numpy', 'PyQt5', 'pyqtgraph', + 'sounddevice'] )