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'] + )