From 052e6c181e8fdefd6c2a4f8670e32305ab6b5432 Mon Sep 17 00:00:00 2001 From: Nathaniel Chen <79379842+nathanchenseanwalter@users.noreply.github.com> Date: Sat, 27 Dec 2025 05:47:53 -0800 Subject: [PATCH] Add classifiers to setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 45e1c9a..6e9c474 100644 --- a/setup.py +++ b/setup.py @@ -10,4 +10,8 @@ install_requires=[ # Add dependencies here ], -) \ No newline at end of file + classifiers=[ + 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', + # add other classifiers as needed + ] +)