From 6914feb64580ef7d2d6054cfe7d2d7674ca02a58 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Wed, 20 Aug 2025 09:36:57 +0200 Subject: [PATCH 1/2] Use a valid SPDX identifier as license classifier This helps automatic license checkers like pip-licenses to identify the right license for this project --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 307c271..c720d00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ name = "cons" dynamic = ["version"] description = "An implementation of Lisp/Scheme-like cons in Python." readme = "README.md" +license: "LGPL-3.0" license-files = ["LICENSE.txt"] authors = [ { name = "Brandon T. Willard", email = "brandonwillard+cons@gmail.com" }, From a2e53618d26c83c8e4da7e1435b3d404960204d9 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Thu, 21 Aug 2025 12:51:46 +0200 Subject: [PATCH 2/2] Fix TOML syntax --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c720d00..29dbf94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "cons" dynamic = ["version"] description = "An implementation of Lisp/Scheme-like cons in Python." readme = "README.md" -license: "LGPL-3.0" +license = "LGPL-3.0" license-files = ["LICENSE.txt"] authors = [ { name = "Brandon T. Willard", email = "brandonwillard+cons@gmail.com" },