From 63b0a18753ac559bb0db837704e0aa90297e1ede Mon Sep 17 00:00:00 2001 From: Antonio Valentino Date: Sun, 20 Aug 2023 16:02:05 +0200 Subject: [PATCH] Fix license inconsistencies The license declared in `setup.py` (`license` field and Python classifier) is inconsistent with the `LICENSE` file. This patch fixes inconsistencies. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8ebcd754..45193bd0 100644 --- a/setup.py +++ b/setup.py @@ -17,11 +17,11 @@ author="James Banting, Jonathan Healy", author_email="jhealy@sparkgeo.com", description="A package to validate STAC files", - license="MIT", + license="Apache-2.0", classifiers=[ "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", + "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: GIS", ],