amun-code/python/setup.py
Grzegorz Kowal 38a205e1c7 PYTHON: Update installation script.
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
2020-08-13 15:52:18 -03:00

19 lines
414 B
Python

from setuptools import setup
setup(
name='amunpy',
description='Python Interface fo AMUN snapshots',
version='0.4',
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'],
"compression": ['lz4', 'zstandard'],
}
)