From fc05cfc1caaec86b5c6fda1f706a85aea79c1064 Mon Sep 17 00:00:00 2001 From: Zhang Yunjun Date: Mon, 25 Jul 2022 11:15:19 -0700 Subject: [PATCH] license: switch from GPLv3 to GPLv3+ --- README.md | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 33bf88a..30484a7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Language](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/) [![CircleCI](https://img.shields.io/circleci/build/github/insarlab/PySolid.svg?logo=circleci&label=test)](https://circleci.com/gh/insarlab/PySolid) [![Version](https://img.shields.io/github/v/release/insarlab/PySolid?color=green)](https://github.com/insarlab/PySolid/releases) -[![License](https://img.shields.io/badge/license-GPLv3-yellow.svg)](https://github.com/insarlab/PySolid/blob/main/LICENSE) +[![License](https://img.shields.io/badge/license-GPLv3+-yellow.svg)](https://github.com/insarlab/PySolid/blob/main/LICENSE) [![Citation](https://img.shields.io/badge/doi-10.1109%2FTGRS.2022.3168509-blue)](https://doi.org/10.1109/TGRS.2022.3168509) ## PySolid diff --git a/setup.py b/setup.py index 07760ff..0732a20 100644 --- a/setup.py +++ b/setup.py @@ -23,13 +23,14 @@ download_url=("https://github.com/insarlab/PySolid/archive/v{}.tar.gz".format(version)), author="Zhang Yunjun, Dennis Milbert", author_email="yunjunzgeo@gmail.com", - license_files=('LICENSE',), + license="GPL-3.0-or-later", + license_files=("LICENSE",), classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering", - "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python :: 3", ],