From ac7697158af8ff9e9a9dc0fcdbcf76424b802e59 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Tue, 12 May 2020 07:41:15 -0300 Subject: [PATCH] PYTHON: Fix extras in setup.py. Signed-off-by: Grzegorz Kowal --- python/setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 95b47e4..a0392a0 100644 --- a/python/setup.py +++ b/python/setup.py @@ -10,5 +10,8 @@ setup( license='GPLv3', py_modules=['amunpy'], install_requires=['h5py', 'numpy'], - extra_require=['scipy', 'xxhash'] + extras_require={ + "digest": ['xxhash'], + "interpolation": ['scipy'], + } )