From 6c9986802ffb89219644825b540ea7cc2bc4f053 Mon Sep 17 00:00:00 2001 From: Freddy Heppell Date: Thu, 11 Jul 2024 22:06:17 +0100 Subject: [PATCH] Change URLs to RtD (#30) --- README.md | 2 +- mkdocs.yml | 2 +- pyproject.toml | 4 ++-- src/wpextract/cli/_shared.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 26da704..8daf511 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ## Quickstart -See the [complete documentation](https://gatenlp.github.io/wpextract/) for more detailed usage. +See the [complete documentation](https://wpextract.readthedocs.io/) for more detailed usage. 1. Install with `pipx` ```shell-session diff --git a/mkdocs.yml b/mkdocs.yml index 737e442..95c837f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ site_name: WPextract copyright: Copyright © 2022-24 The University of Sheffield. repo_url: https://github.com/GateNLP/wpextract -site_url: https://gatenlp.github.io/wpextract/ +site_url: https://wpextract.readthedocs.io/ site_description: Create datasets from WordPress sites for research or archiving edit_uri: edit/main/docs/ theme: diff --git a/pyproject.toml b/pyproject.toml index f5cf665..f944883 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,8 +2,8 @@ name="wpextract" version="1.0.1" description="Create datasets from WordPress sites" -homepage="https://gatenlp.github.io/wpextract/" -documentation="https://gatenlp.github.io/wpextract/" +homepage="https://wpextract.readthedocs.io/" +documentation="https://wpextract.readthedocs.io/" repository="https://github.com/GateNLP/wpextract" license="Apache-2.0" readme = "README.md" diff --git a/src/wpextract/cli/_shared.py b/src/wpextract/cli/_shared.py index 2855194..0c080a6 100644 --- a/src/wpextract/cli/_shared.py +++ b/src/wpextract/cli/_shared.py @@ -10,7 +10,7 @@ from tqdm.contrib.logging import logging_redirect_tqdm CMD_ARGS = { - "epilog": "See https://gatenlp.github.io/wpextract/ for documentation.", + "epilog": "See https://wpextract.readthedocs.io/ for documentation.", }