From 9b08c1c604eb86a77d9ebf4ac642a1e0bff6e647 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Mon, 24 Jun 2024 14:50:16 +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 04a1370..2589f10 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,10 @@ with open(path('%s.rst' % file_)) as f: description += f.read() + '\n\n' -classifiers = ["Programming Language :: Python"] +classifiers = [ + "Programming Language :: Python", + "License :: OSI Approved :: MIT License", +] setup(name='commentjson',