From e68956b59cfe7b971a31ba9bcbff44b24b35961d Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Mon, 27 Apr 2026 14:46:11 +0200 Subject: [PATCH 1/2] Update license information in pyproject.toml Fixes license specifiers according to https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-and-license-files This 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 a4a66685f..a83e6d669 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ name="tableauserverclient" dynamic = ["version"] description='A Python module for working with the Tableau Server REST API.' authors = [{name="Tableau", email="github@tableau.com"}] +license="Apache-2.0", license-files = ["LICENSE"] readme = "README.md" From ed26d4010b1e4a61c7c2df3d9496f7ea10a6b439 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Mon, 27 Apr 2026 20:26:20 +0200 Subject: [PATCH 2/2] Fix syntax --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a83e6d669..f1887daab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ name="tableauserverclient" dynamic = ["version"] description='A Python module for working with the Tableau Server REST API.' authors = [{name="Tableau", email="github@tableau.com"}] -license="Apache-2.0", +license = "Apache-2.0" license-files = ["LICENSE"] readme = "README.md"