From 4a66a2976103f8c14fad36c20142ab6ae943d59d Mon Sep 17 00:00:00 2001 From: Mantas Date: Fri, 23 Jun 2017 12:57:05 +0300 Subject: [PATCH] Do not include whole licence text into licence field In setup.py, licence field should be short licence abbreviation, not a full licence text. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c4d90a..bd67df0 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,6 @@ setup( scripts=['bin/colout'], include_package_data=True, install_requires=requires, - license=open('LICENSE').read(), + license='GPLv3', zip_safe=False, )