From 28e67622ddb764b0744bd36830242c260082743a Mon Sep 17 00:00:00 2001 From: Jasper Krauter <12259417+jeeeesper@users.noreply.github.com> Date: Tue, 19 May 2026 13:19:10 +0300 Subject: [PATCH] fix: restore PyPI README by setting explicit readme path python-source = "python" broke maturin's auto-detection of README.md, which looked in python_bindings/python/ instead of python_bindings/. --- python_bindings/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/python_bindings/pyproject.toml b/python_bindings/pyproject.toml index 39c96e63..c98af33c 100644 --- a/python_bindings/pyproject.toml +++ b/python_bindings/pyproject.toml @@ -10,6 +10,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] +readme = "README.md" dynamic = ["version"] [tool.maturin] features = ["pyo3/extension-module"]