From e000f7396cd8c5232668350e98459b7682cfe2c1 Mon Sep 17 00:00:00 2001 From: Sander Niemeijer Date: Wed, 3 Nov 2021 18:41:00 +0100 Subject: [PATCH] Prepare for 2.0 release --- CHANGES.rst | 5 +++++ setup.py | 21 +++++++++++++++++---- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c820e0f..c61c660 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,10 @@ +2.0 2021-11-03 +~~~~~~~~~~~~~~ + * Set creation_date equal to validity_start for AUX_NISE__. +* Add support for additional auxiliary product types. + * Remove file class from product_type names. This requires a data migration of any existing database. This can be done using e.g. UPDATE core SET product_type=substr(product_type,0,15) WHERE product_type LIKE 'S5P%'; diff --git a/setup.py b/setup.py index ec64750..354ca26 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,21 @@ from setuptools import setup setup( - name='muninn-sentinel5p', - version='2.0', - py_modules=['muninn_sentinel5p'], - install_requires=['muninn'], + name="muninn-sentinel5p", + version="2.0", + description="Muninn extension for official L1/L2 Copernicus Sentinel-5P products", + url="https://github.com/stcorp/muninn-sentinel5p", + author="S[&]T", + license="BSD", + py_modules=["muninn_sentinel5p"], + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Topic :: Scientific/Engineering", + "Environment :: Plugins", + ], + install_requires=["muninn"], )