From 80c81e562c247065c0d8446329ef280057ce13bd Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Wed, 22 Nov 2023 17:52:50 +0000 Subject: [PATCH] update links in documentation (#103) * update links in documentation * update readme --- .github/workflows/docs/build-docs | 10 +++++++--- README.md | 4 +++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs/build-docs b/.github/workflows/docs/build-docs index 196dda9..633367a 100755 --- a/.github/workflows/docs/build-docs +++ b/.github/workflows/docs/build-docs @@ -10,6 +10,8 @@ import sys DOCS_DIR = Path(sys.argv[0]).absolute().parent MODULES_DIR = DOCS_DIR.parent.parent.parent +TKET_EXAMPLES_LINK = "https://tket.quantinuum.com/examples/" +TKET_MANUAL_LINK = "https://tket.quantinuum.com/user-manual/" TKET_WEBSITE_LINK = "https://tket.quantinuum.com/" PYTKET_DOCS_LINK = "https://tket.quantinuum.com/api-docs/" PYTKET_EX_DOCS_LINK = "https://tket.quantinuum.com/api-docs/extensions.html" @@ -56,11 +58,13 @@ def build_module_docs(): with open(mod_docs / "intro.txt", "r") as f: content = f.readlines() content.append( - "\n.. toctree::\n\t:caption: More documentation:\n\t:maxdepth: 1\n\n" + "\n.. toctree::\n\t:caption: pytket documentation:\n\t:maxdepth: 1\n\n" ) - content.append(f"\tTKET website <{TKET_WEBSITE_LINK}>\n") - content.append(f"\tpytket <{PYTKET_DOCS_LINK}>\n") + content.append(f"\tpytket API docs <{PYTKET_DOCS_LINK}>\n") content.append(f"\tpytket extensions <{PYTKET_EX_DOCS_LINK}>\n") + content.append(f"\tManual <{TKET_MANUAL_LINK}>\n") + content.append(f"\tExample notebooks <{TKET_EXAMPLES_LINK}>\n") + content.append(f"\tTKET website <{TKET_WEBSITE_LINK}>\n") content.append(f"\tqujax <{QUJAX_LINK}>\n") content.append( diff --git a/README.md b/README.md index 3b055f5..1173acd 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,9 @@ Some useful links: `pytket-qujax` is available for Python 3.9, 3.10 and 3.11, on Linux and MacOS. To install, run: -```pip install pytket-qujax``` +```shell +pip install pytket-qujax +``` This will install `pytket` if it isn't already installed, and add new classes and methods into the `pytket.extensions` namespace.