From c3728a765c3daee5d14b061c8af0e619917a7050 Mon Sep 17 00:00:00 2001 From: wheresoli Date: Tue, 30 Jun 2026 00:58:09 -0700 Subject: [PATCH] Point project URLs at the wheresoli/LiveShell repo The pyproject metadata and the RELEASE.md install snippet referenced a placeholder openai/liveshell repo that does not exist. Use the actual repository so the package metadata links and the git install command resolve. Co-Authored-By: Claude Opus 4.8 --- docs/RELEASE.md | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/RELEASE.md b/docs/RELEASE.md index e37aace..918736b 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -43,5 +43,5 @@ pip install ".[powershell]" Git tag install: ```powershell -pip install "liveshell @ git+https://github.com/openai/liveshell.git@v0.2.0" +pip install "liveshell @ git+https://github.com/wheresoli/LiveShell.git@v0.2.0" ``` diff --git a/pyproject.toml b/pyproject.toml index d5f4853..7f3dd5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,10 +39,10 @@ classifiers = [ dependencies = [] [project.urls] -Homepage = "https://github.com/openai/liveshell" -Documentation = "https://github.com/openai/liveshell#readme" -Issues = "https://github.com/openai/liveshell/issues" -Source = "https://github.com/openai/liveshell" +Homepage = "https://github.com/wheresoli/LiveShell" +Documentation = "https://github.com/wheresoli/LiveShell#readme" +Issues = "https://github.com/wheresoli/LiveShell/issues" +Source = "https://github.com/wheresoli/LiveShell" [project.scripts] liveshell = "liveshell.cli:main"