aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/config.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2025-04-17 13:33:57 +0200
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2025-06-04 16:19:02 +0200
commit2994629b717fd52d616db139017e25535b357309 (patch)
tree9ea9c959d16c4df5cd99c0a1fd9602bab5a13a8f /build_scripts/config.py
parente5c622158a769161ed4b5dcf37d4c48094ec6c20 (diff)
build: setuptools, packaging and build
By updating the build dependencies, a few things have changed by updating packaging and setuptools: - now the name of the wheel files needs to be lowercase - the generated wheel names now have lower-case for the project name - the license entry on pyproject.toml can now be a direct SPDX - update wheel_tester Pick-to: 6.9 Change-Id: Iefee4adba5d3fee433d02729b0995acb2c3cceed Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'build_scripts/config.py')
-rw-r--r--build_scripts/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/config.py b/build_scripts/config.py
index efafc7688..af4dabbf3 100644
--- a/build_scripts/config.py
+++ b/build_scripts/config.py
@@ -82,7 +82,7 @@ class Config(metaclass=Singleton):
self.setup_kwargs['author'] = _author["name"]
self.setup_kwargs['author_email'] = _author["email"]
self.setup_kwargs['url'] = _pyproject_data["urls"]["Homepage"]
- self.setup_kwargs['license'] = _pyproject_data["license"]["text"]
+ self.setup_kwargs['license'] = _pyproject_data["license"]
self.setup_kwargs['python_requires'] = _pyproject_data["requires-python"]
self.classifiers = _pyproject_data["classifiers"]