From f40362725a80a5fb3dc34c62886d00a97283b8e0 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Tue, 17 Jun 2025 14:21:43 -0400 Subject: [PATCH] Fix pyproject license These parse out into core metadata `License` and `License-Expression` fields. Ref: https://packaging.python.org/en/latest/specifications/pyproject-toml/#license --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 883d40ea..52c22878 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,8 +6,8 @@ build-backend = "hatchling.build" name = "protovalidate" description = "Protocol Buffer Validation for Python" readme = "README.md" -license-expression = "Apache 2.0" -license-file = "LICENSE" +license = "Apache 2.0" +license-files = ["LICENSE"] keywords = ["validate", "protobuf", "protocol buffer"] requires-python = ">=3.9" classifiers = [