From 78af2200b5b1f274b7ac120b88f500783c25da78 Mon Sep 17 00:00:00 2001 From: Jamie Scott Date: Wed, 16 Apr 2025 10:25:22 +0100 Subject: [PATCH 1/2] Re-add project URLs after migration to pyproject.toml Following spec: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#urls --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0a212a96e..52f42eb43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,11 @@ dependencies = [ "wcwidth", ] +[project.urls] +homepage = "https://github.com/prompt-toolkit/python-prompt-toolkit" +source = "https://github.com/prompt-toolkit/python-prompt-toolkit" +documentation = "https://python-prompt-toolkit.readthedocs.io/en/stable/" + [tool.ruff] target-version = "py37" lint.select = [ From fb9ac6ea95e1fd9bb7a7b1596135e430d0ab6556 Mon Sep 17 00:00:00 2001 From: Jamie Scott Date: Fri, 25 Apr 2025 15:20:07 +0100 Subject: [PATCH 2/2] Review comments --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 52f42eb43..e29a49b40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,9 +26,8 @@ dependencies = [ ] [project.urls] -homepage = "https://github.com/prompt-toolkit/python-prompt-toolkit" -source = "https://github.com/prompt-toolkit/python-prompt-toolkit" -documentation = "https://python-prompt-toolkit.readthedocs.io/en/stable/" +Homepage = "https://github.com/prompt-toolkit/python-prompt-toolkit" +Documentation = "https://python-prompt-toolkit.readthedocs.io/en/stable/" [tool.ruff] target-version = "py37"