2019-11-22 18:12:43 -03:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2020-09-10 16:57:03 -03:00
|
|
|
name='amunpy',
|
|
|
|
description='Python Interface fo AMUN snapshots',
|
|
|
|
version='0.5',
|
|
|
|
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'],
|
|
|
|
}
|
2019-11-27 10:27:28 -03:00
|
|
|
)
|