From 9a8a27677f115832f59084fe67a8bfcfe05d8de5 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Mon, 24 Jun 2024 15:01:41 +0200 Subject: [PATCH] Fix license classifier --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ecfcb77..f7d7933 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,10 @@ url="https://github.com/crownstone/crownstone-lib-python-uart", install_requires=list(package.strip() for package in open('requirements.txt')), classifiers=[ - 'Programming Language :: Python :: 3.7' + 'Programming Language :: Python :: 3.7', + 'License :: OSI Approved :: Apache Software License', + 'License :: OSI Approved :: MIT License', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)' ], python_requires='>=3.7', )