From 58cd50dd6ce8b06ee6ceae743ad9393e4e00686b Mon Sep 17 00:00:00 2001 From: marzeq <58303665+marzeq@users.noreply.github.com> Date: Sat, 25 Jan 2025 21:34:27 +0100 Subject: [PATCH] Fix project.license field in pyproject.toml so that setup.py doesn't fail --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 287fdf5..3593877 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "obsws-python" dynamic = ["version"] description = "A Python SDK for OBS Studio WebSocket v5.0" readme = "README.md" -license = "GPL-3.0-only" +license = { text = "GPL-3.0-only" } requires-python = ">=3.9" authors = [ { name = "Adem Atikturk", email = "aatikturk@gmail.com" },