From 090fde180bdc453c888bd53c9f9fb0a3cfc07aa9 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Mon, 24 Jun 2024 14:59:50 +0200 Subject: [PATCH] Fix license classifier --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 955d41d..09b7e74 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,10 @@ url="https://github.com/crownstone/crownstone-lib-python-core", 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', -) \ No newline at end of file +)