From ce64d99a9c90474c0f17add2ad086ae047c6d27e Mon Sep 17 00:00:00 2001 From: Freddy Heppell Date: Thu, 11 Jul 2024 17:33:53 +0100 Subject: [PATCH] correct repo name in pyproject.toml (#29) --- pyproject.toml | 6 +++--- src/wpextract/cli/_shared.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5dc60b6..ab042c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,9 @@ name="wpextract" version="1.0.0" description="Create datasets from WordPress sites" -homepage="https://gatenlp.github.io/wordpress-site-extractor/" -documentation="https://gatenlp.github.io/wordpress-site-extractor/" -repository="https://github.com/GateNLP/wordpress-site-extractor" +homepage="https://gatenlp.github.io/wpextract/" +documentation="https://gatenlp.github.io/wpextract/" +repository="https://github.com/GateNLP/wpextract" license="Apache-2.0" readme = "README.md" authors=["Freddy Heppell "] diff --git a/src/wpextract/cli/_shared.py b/src/wpextract/cli/_shared.py index 5fdfd31..2855194 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/wordpress-site-extractor/ for documentation.", + "epilog": "See https://gatenlp.github.io/wpextract/ for documentation.", }