From ebf19466a325c28f0a53b333f0b8e14baf8564d6 Mon Sep 17 00:00:00 2001 From: Ankith Date: Fri, 5 Jul 2024 21:03:15 +0530 Subject: [PATCH 1/2] Make pyproject license consistent with setup.py --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c33803b64c..b79318843d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "2.5.1.dev1" description = "Python Game Development" readme = "README.rst" # for long description requires-python = ">=3.8" -license = {file = "docs/LGPL.txt"} # path to LGPL license +license = {text = "LGPL"} authors = [{name = "A community project"}] classifiers = [ "Development Status :: 5 - Production/Stable", From 630e8a838a9c5a7ee00d22be10efca6601e84c71 Mon Sep 17 00:00:00 2001 From: Ankith Date: Fri, 5 Jul 2024 21:16:11 +0530 Subject: [PATCH 2/2] specify LGPL version --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b79318843d..d4fa5da313 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "2.5.1.dev1" description = "Python Game Development" readme = "README.rst" # for long description requires-python = ">=3.8" -license = {text = "LGPL"} +license = {text = "LGPL v2.1"} authors = [{name = "A community project"}] classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/setup.py b/setup.py index 1e15f01c01..823a2092b3 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ METADATA = { "name": "pygame-ce", "version": pg_ver.version, - "license": "LGPL", + "license": "LGPL v2.1", "url": "https://pyga.me", "author": "A community project.", "description": "Python Game Development",