From 16438125693b0d58ad5440e61fc4b19d3d5c4b4e Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Tue, 6 Aug 2019 10:51:22 +0100 Subject: [PATCH] Correct license in setup.py The README and License files say it's released under the Unlicense, so synchronize with that. The `license` field from `setup()` is what tends to get read by automated license checkers, without this the library would be flagged as GPL which is not usable by many folks. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 62355e5..2c7b912 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def read(fname): author_email='obeythetestinggoat@gmail.com', maintainer='Harry Percival', maintainer_email='obeythetestinggoat@gmail.com', - license='GNU GPL v3.0', + license='Unlicense', url='https://github.com/hjwp/pytest-icdiff', description='use icdiff for better error messages in pytest assertions', long_description=read('README.rst'),