PYTHON: Add setup.py to facilitate package installation.

Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
Grzegorz Kowal 2019-11-22 18:12:43 -03:00
parent 802eb9234f
commit d7f4acdd9c

13
python/setup.py Normal file
View File

@ -0,0 +1,13 @@
from setuptools import setup
setup(
name='amun',
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'],
install_requires=['h5py', 'numpy']
)