From 5d28d76277b58b0ed0ce89ddda646af80b06ba8c Mon Sep 17 00:00:00 2001 From: nemobis Date: Sun, 25 Jun 2017 09:54:21 +0200 Subject: [PATCH] Set license GPLv3+ ("or any later version") in setup.py Most file headers in the project contain the standard > either version 3 of the License, or (at your option) any later version https://github.com/ansible/ansible/search?utf8=%E2%9C%93&q=%22any+later+version%22 So this project appears to be GPLv3+, as stated in the classifiers function. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 58f65b60396..ffa2ead7099 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ setup( author=__author__, author_email='info@ansible.com', url='https://ansible.com/', - license='GPLv3', + license='GPLv3+', # Ansible will also make use of a system copy of python-six and # python-selectors2 if installed but use a Bundled copy if it's not. install_requires=install_requirements,