From d7f4acdd9c97814c38543b49eafb194b2c44631e Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Fri, 22 Nov 2019 18:12:43 -0300 Subject: [PATCH] PYTHON: Add setup.py to facilitate package installation. Signed-off-by: Grzegorz Kowal --- python/setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 python/setup.py diff --git a/python/setup.py b/python/setup.py new file mode 100644 index 0000000..42d2aa4 --- /dev/null +++ b/python/setup.py @@ -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'] + )