PYTHON: Rename amun to amunpy.

Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
Grzegorz Kowal 2019-11-27 10:28:49 -03:00
parent 0f9a6c222d
commit 7cf6bd34b0
2 changed files with 2 additions and 2 deletions

View File

@ -1,14 +1,14 @@
from setuptools import setup
setup(
name='amun',
name='amunpy',
description='Python Interface fo AMUN snapshots',
version='0.1',
author='Grzegorz Kowal',
author_email='grzegorz@amuncode.org',
url='https://www.amuncode.org/',
license='GPLv3',
py_modules=['amun'],
py_modules=['amunpy'],
install_requires=['h5py', 'numpy'],
extra_require=['scipy']
)