From 5a4af4e7dde8d3ab7f611bf9f37232ff039ee716 Mon Sep 17 00:00:00 2001 From: Matthew Judy Date: Wed, 13 Nov 2024 14:27:47 -0500 Subject: [PATCH] Update License Info with Well-known MIT Classifier I am currently unable to utilize `nodejs-wheel-binaries` at my place of work because the (industry-standard) managed system we use to procure external code can not identify the license type. This change replaces the current `license` property with the registered classifier for the MIT License, ensuring that it will be parsed properly by managed procurement tools like ours. * Update license data in `pyproject.toml`, replacing `license` property with classifiers, containing the ``License :: OSI Approved :: MIT License`` classifier. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 10ae44f..b4cb256 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ description = "unoffical Node.js package" authors = [ {name = "Jinzhe Zeng", email = "jinzhe.zeng@rutgers.edu"}, ] -license = {file = "LICENSE"} classifiers = [ + "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Development Status :: 5 - Production/Stable", "Environment :: Console",