fix(client/python): cap setuptools<77 so dist stays metadata 2.2 for Gitea PyPI feed; proprietary via classifier

This commit is contained in:
Joseph Doherty
2026-06-15 05:30:22 -04:00
parent 144c293f05
commit c7f754c77b
+4 -2
View File
@@ -1,5 +1,7 @@
[build-system] [build-system]
requires = ["setuptools>=69", "wheel"] # setuptools >=77 emits core-metadata 2.4 (PEP 639 License-Expression), which the
# Gitea PyPI feed does not yet accept; cap below that so the dist stays <=2.3.
requires = ["setuptools>=69,<77", "wheel"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
@@ -16,9 +18,9 @@ dependencies = [
authors = [ authors = [
{ name = "Joseph Doherty" }, { name = "Joseph Doherty" },
] ]
license = "LicenseRef-Proprietary"
keywords = ["mxaccess", "mxgateway", "grpc", "client", "archestra"] keywords = ["mxaccess", "mxgateway", "grpc", "client", "archestra"]
classifiers = [ classifiers = [
"License :: Other/Proprietary License",
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",