Skip to content

Commit 2251965

Browse files
committed
fix: cap setuptools <75 for compatible metadata version
Setuptools >=75 generates Metadata-Version 2.4 which twine <6 cannot upload. Cap to <75 to produce Metadata-Version 2.1.
1 parent 954222c commit 2251965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.0", "wheel"]
2+
requires = ["setuptools>=61.0,<75.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -8,7 +8,7 @@ version = "1.1.0"
88
description = "Agent runtime intelligence layer — optimize cost, latency, quality, budget, compliance, and energy across AI agent workflows."
99
readme = "README.md"
1010
requires-python = ">=3.9"
11-
license = "MIT"
11+
license = {text = "MIT"}
1212
authors = [
1313
{name = "Lemony Inc.", email = "hello@lemony.ai"}
1414
]

0 commit comments

Comments
 (0)