From efc5d8f5ede5a1b8c6bc664a7f83f6fd9deecee2 Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Sun, 16 Nov 2025 03:16:52 -0800 Subject: [PATCH] [model-gateway] fix SDist step readme path (#13373) --- sgl-router/bindings/python/pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sgl-router/bindings/python/pyproject.toml b/sgl-router/bindings/python/pyproject.toml index 62575218a..ced74c3ee 100644 --- a/sgl-router/bindings/python/pyproject.toml +++ b/sgl-router/bindings/python/pyproject.toml @@ -12,7 +12,7 @@ authors = [ {name = "Keyang Ru", email = "rukeyang@gmail.com"} ] requires-python = ">=3.8" -readme = "README.md" +readme = "../../README.md" license = { text = "Apache-2.0" } classifiers = [ "Programming Language :: Python :: Implementation :: CPython", @@ -44,3 +44,5 @@ dev = [ [tool.maturin] python-source = "." module-name = "sglang_router.sglang_router_rs" +# Exclude bindings/python/README.md to use root README only +exclude = ["README.md"]