From 5d8ef97fa1d4b2f6b0b77b194bddf8364b88b833 Mon Sep 17 00:00:00 2001 From: Yuneng Jiang Date: Fri, 24 Apr 2026 14:56:26 -0700 Subject: [PATCH] chore(packaging): declare proprietary license in litellm-enterprise metadata The enterprise package ships under the BerriAI Enterprise License defined in enterprise/LICENSE.md, which is not an SPDX-listed license. Declare it via PEP 639's LicenseRef-Proprietary expression so metadata-reading tools (PyPI classifiers, Nexus IQ, pip-licenses) resolve it instead of reporting License-None. The existing license-files entry already ships the full terms. --- enterprise/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/enterprise/pyproject.toml b/enterprise/pyproject.toml index 1217a84692e..d93a64b253b 100644 --- a/enterprise/pyproject.toml +++ b/enterprise/pyproject.toml @@ -4,6 +4,7 @@ version = "0.1.38" description = "Package for LiteLLM Enterprise features" readme = "README.md" requires-python = ">=3.9" +license = "LicenseRef-Proprietary" license-files = ["LICENSE.md"] authors = [ { name = "BerriAI" },