Skip to content

Commit

Permalink
Prepare for 2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
svniemeijer committed Nov 3, 2021
1 parent 55f524c commit e000f73
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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%';
Expand Down
21 changes: 17 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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"],
)

0 comments on commit e000f73

Please sign in to comment.