From 8ccccd44c998403695c631b480c242a903cca9b0 Mon Sep 17 00:00:00 2001 From: Matthew Grange Date: Fri, 27 Mar 2026 11:10:43 -0700 Subject: [PATCH] Fix license metadata from MIT to Apache-2.0 Summary: The pyproject.toml incorrectly declared the license as MIT, while the LICENSE file and README both specify Apache License 2.0. This fixes the metadata to match the actual license before first PyPI publish. Differential Revision: D98512204 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2e86e7e..65f38aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "PrivacyGuard" description = "PrivacyGuard platform for Privacy Attacks and Analysis. Perform privacy analyses of ML models using Inference Attacks and Extraction Attacks." authors = [{name = "Meta Platforms, Inc."}] -license = "MIT" +license = "Apache-2.0" license-files = ["LICENSE"] readme = "README.md" requires-python = ">=3.10"