From 4823c0aea400d88ffd81e92dd96e413ba0990ff3 Mon Sep 17 00:00:00 2001 From: Chandrasekharan M Date: Thu, 17 Sep 2026 18:24:58 +0530 Subject: [PATCH] fix: declare MIT in pyproject to match the LICENSE file The repository has shipped with an MIT LICENSE file, but pyproject.toml declared AGPL v3 in both the license field and the trove classifier, so PyPI and dependency scanners report a license the code was never released under. Align the metadata with the LICENSE file. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01KjRpEocCvnxGUSkFivgnhk --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c19ae9f..c97cc33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ dynamic = ["version"] description = "Client library for LLM Whisperer" readme = "README.md" urls = { Homepage = "https://unstract.com/llmwhisperer/", Source = "https://github.com/Zipstack/llm-whisperer-python-client" } -license = { text = "AGPL v3" } +license = { text = "MIT" } authors = [{ name = "Zipstack Inc", email = "devsupport@zipstack.com" }] keywords = ["llmwhisperer tools-development-kit apps development-kit sdk"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", - "License :: OSI Approved :: GNU Affero General Public License v3", + "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows",