From dbcbe55d3fecfc376adf360e7c57829099fae035 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 6 Oct 2023 10:30:42 +0300 Subject: [PATCH] Use SPDX license identifier It does not change the license itself, only its idenfier in `setup.py`, so external tools can read it better. Full list: https://spdx.org/licenses/ Closes https://github.com/python/mypy/issues/16228 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7e7793a406d0..5dba26fb10e0 100644 --- a/setup.py +++ b/setup.py @@ -202,7 +202,7 @@ def run(self): author="Jukka Lehtosalo", author_email="jukka.lehtosalo@iki.fi", url="https://www.mypy-lang.org/", - license="MIT License", + license="MIT", py_modules=[], ext_modules=ext_modules, packages=find_packages(),