From cedd4f56a78a0679426bf24d483f663c170fda6f Mon Sep 17 00:00:00 2001 From: maxi-seiringer Date: Thu, 21 May 2026 10:26:05 +0200 Subject: [PATCH] Add SPDX license expression to package metadata This adds an explicit SPDX license expression to the package metadata. The project already includes the LICENSE file via license-files, but without project.license some license-reporting tools may show less useful license metadata. BSD-3-Clause matches the repository license. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1c59fbdc9..82ca6d546 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,7 @@ name = "torchcodec" description = "A video decoder for PyTorch" readme = "README.md" requires-python = ">=3.10" +license = "BSD-3-Clause" license-files = ["LICENSE"] authors = [ { name = "PyTorch Team", email = "packages@pytorch.org" },