Do not include whole licence text into licence field

In setup.py, licence field should be short licence abbreviation, not a full
licence text.
This commit is contained in:
Mantas 2017-06-23 12:57:05 +03:00
commit 4a66a29761

View file

@ -30,6 +30,6 @@ setup(
scripts=['bin/colout'],
include_package_data=True,
install_requires=requires,
license=open('LICENSE').read(),
license='GPLv3',
zip_safe=False,
)