From 4a5b804b7326290baa7a56ed974c19d0d3a9689b Mon Sep 17 00:00:00 2001 From: noahho Date: Sat, 25 Apr 2026 22:17:43 +0200 Subject: [PATCH] Declare license in pyproject.toml metadata Add `license = { file = "LICENSE" }` to the [project] table so PyPI and license scanners pick up the Apache-2.0 license from the existing LICENSE file. Without this, the package shows as license-unknown on PyPI even though the LICENSE file is present in the source tree. No code or runtime change. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 6c86e77..1c2cee2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,7 @@ name = "tabpfn-common-utils" dynamic = ["version"] description = "Utilities shared between TabPFN codebases" readme = "README.md" +license = { file = "LICENSE" } authors = [ {name = "Prior Labs", email = "hello@priorlabs.ai"} ]