diff --git a/setup.py b/setup.py index 35293fa..07189bd 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() setup(name='irisreader', - version='0.3.1', + version='0.3.2', description='IRISreader is a Python library that allows for efficient browsing through IRIS satellite data in order to simplify machine learning applications', long_description=long_description, long_description_content_type="text/markdown", @@ -15,6 +15,6 @@ packages=find_packages(), package_data={'irisreader': ['data/*.fits', 'data/20140518_151415_3820607204/*.fits', 'data/*.npz'] }, install_requires=['numpy', 'pandas', 'matplotlib', 'astropy', 'scipy', 'scikit-learn', 'requests', 'beautifulsoup4', 'tqdm', 'ipython'], - download_url='https://github.com/i4Ds/IRISreader/archive/v0.3.1.tar.gz', + download_url='https://github.com/i4Ds/IRISreader/archive/v0.3.2.tar.gz', zip_safe=False)