From 8c32fa221c7646b5b77f0afd27777d9861f2da4f Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Mon, 27 Apr 2026 14:08:54 +0200 Subject: [PATCH] Add SPDX specifier Fixes license specifiers according to https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-and-license-files Thois allows automatic license inspection tools like pip-licenses to correctly categorize this package. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 307c271..1d7f1e8 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-only" license-files = ["LICENSE.txt"] authors = [ { name = "Brandon T. Willard", email = "brandonwillard+cons@gmail.com" },