From 964c08f72fdd0a19380d7beb4d40f6afc41d989e Mon Sep 17 00:00:00 2001 From: comrumino Date: Fri, 9 Jun 2023 20:55:07 -0500 Subject: [PATCH] Fixed #536 by following correct/suggested syntax of license = { text = "MIT License" } in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b1c824f5..3de5b892 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "hatchling.build" name = "rpyc" description = "Remote Python Call (RPyC) is a transparent and symmetric distributed computing library" readme = "README.rst" -license = "MIT" +license = {text = "MIT License"} requires-python = ">=3.7" authors = [ { name = "Tomer Filiba", email = "tomerfiliba@gmail.com" },