amun-code/python/setup.py
Grzegorz Kowal ac7697158a PYTHON: Fix extras in setup.py.
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
2020-05-12 07:41:15 -03:00

18 lines
375 B
Python

from setuptools import setup
setup(
name='amunpy',
description='Python Interface fo AMUN snapshots',
version='0.2',
author='Grzegorz Kowal',
author_email='grzegorz@amuncode.org',
url='https://www.amuncode.org/',
license='GPLv3',
py_modules=['amunpy'],
install_requires=['h5py', 'numpy'],
extras_require={
"digest": ['xxhash'],
"interpolation": ['scipy'],
}
)