From 0960ae25bfc09b68516244ebcc28a26c7820ce0b Mon Sep 17 00:00:00 2001 From: EC2 Default User Date: Fri, 1 Aug 2025 20:11:33 +0000 Subject: [PATCH 1/2] Update license field to use proper SPDX identifier This changes the license field to be a valid [SPDX identifier](https://spdx.org/licenses) aligning with [PEP 639](https://peps.python.org/pep-0639/#project-source-metadata). This populates the `license_expression` field in the PyPI API and is used by downstream tools including deps.dev This PR was generated by Claude after reviewing the license and manifest files in your repository, but opened and reviewed by me. Please let me know if the analysis is incorrect and thanks for being an OSS maintainer. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index be594b18..974d0f56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "Flask-SQLAlchemy" version = "3.1.1" description = "Add SQLAlchemy support to your Flask application." readme = "README.md" -license = { file = "LICENSE.txt" } +license = "BSD-3-Clause" maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"},] classifiers = [ "Development Status :: 5 - Production/Stable", From 8f11e6f14f3bcee50a825348fd8c7dd164ed638b Mon Sep 17 00:00:00 2001 From: Leif Date: Fri, 1 Aug 2025 16:26:53 -0400 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 974d0f56..c44ceb6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ version = "3.1.1" description = "Add SQLAlchemy support to your Flask application." readme = "README.md" license = "BSD-3-Clause" +license-files = ["LICENSE.txt"] maintainers = [{name = "Pallets", email = "contact@palletsprojects.com"},] classifiers = [ "Development Status :: 5 - Production/Stable",