2019-11-22 18:12:43 -03:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2019-11-27 10:28:49 -03:00
|
|
|
name='amunpy',
|
2019-11-22 18:12:43 -03:00
|
|
|
description='Python Interface fo AMUN snapshots',
|
2020-05-12 07:31:12 -03:00
|
|
|
version='0.2',
|
2019-11-22 18:12:43 -03:00
|
|
|
author='Grzegorz Kowal',
|
|
|
|
author_email='grzegorz@amuncode.org',
|
|
|
|
url='https://www.amuncode.org/',
|
|
|
|
license='GPLv3',
|
2019-11-27 10:28:49 -03:00
|
|
|
py_modules=['amunpy'],
|
2019-11-27 10:27:28 -03:00
|
|
|
install_requires=['h5py', 'numpy'],
|
2020-05-12 07:31:12 -03:00
|
|
|
extra_require=['scipy', 'xxhash']
|
2019-11-27 10:27:28 -03:00
|
|
|
)
|