From 38a205e1c7de4b486f41b6022172b56e55399775 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Thu, 13 Aug 2020 15:52:18 -0300 Subject: [PATCH] PYTHON: Update installation script. Signed-off-by: Grzegorz Kowal --- python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 18c7f03..a4fa3b6 100644 --- a/python/setup.py +++ b/python/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name='amunpy', description='Python Interface fo AMUN snapshots', - version='0.3', + version='0.4', author='Grzegorz Kowal', author_email='grzegorz@amuncode.org', url='https://www.amuncode.org/', @@ -13,5 +13,6 @@ setup( extras_require={ "digest": ['xxhash'], "interpolation": ['scipy'], + "compression": ['lz4', 'zstandard'], } )