From c521e5570cf799f458b6136774f842ce5a4dbe8e Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Thu, 4 Dec 2025 15:54:42 +1300 Subject: [PATCH] pyproject.toml: Fix license specifier Building with pip complains about the license property. Update to use the correct table format. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f8baeac1..706fcd09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ description = "Read key-value pairs from a .env file and set them as environment authors = [ {name = "Saurabh Kumar", email = "me+github@saurabh-kumar.com"}, ] -license = "BSD-3-Clause" +license = { text = "BSD-3-Clause" } keywords = [ "environment variables", "deployments",