Fix license configuration to use SPDX expression
- Replace deprecated License classifier with SPDX license field - Use "GPL-3.0-or-later" SPDX identifier instead of deprecated classifier - Removes setuptools deprecation warning 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
53f672bb76
commit
8c4ea3a77f
2
setup.py
2
setup.py
|
|
@ -214,11 +214,11 @@ setup(
|
||||||
'aidocs': GenerateAIDocs,
|
'aidocs': GenerateAIDocs,
|
||||||
'test': TestCommand,
|
'test': TestCommand,
|
||||||
},
|
},
|
||||||
|
license="GPL-3.0-or-later",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
||||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue