PYTHON: Fix extras in setup.py.

Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
Grzegorz Kowal 2020-05-12 07:41:15 -03:00
parent 425bcc2f17
commit ac7697158a

View File

@ -10,5 +10,8 @@ setup(
license='GPLv3',
py_modules=['amunpy'],
install_requires=['h5py', 'numpy'],
extra_require=['scipy', 'xxhash']
extras_require={
"digest": ['xxhash'],
"interpolation": ['scipy'],
}
)