From 30f6175ae30e7a7f7992d89cba0d2d232a8daac5 Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Thu, 26 Feb 2026 02:41:12 +0100 Subject: [PATCH] chore: update repository URLs and documentation links to reflect new ownership --- README.md | 10 +++++----- docs/antora-playbook.yml | 2 +- pyproject.toml | 17 +++++------------ .../build_hooks/reqstool.py | 2 +- 4 files changed, 12 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 2c95a1d..adc9ea6 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -[![Commit Activity](https://img.shields.io/github/commit-activity/m/Luftfartsverket/reqstool-python-hatch-plugin?label=commits&style=for-the-badge)](https://github.com/Luftfartsverket/reqstool-python-hatch-plugin/pulse) -[![GitHub Issues](https://img.shields.io/github/issues/Luftfartsverket/reqstool-python-hatch-plugin?style=for-the-badge&logo=github)](https://github.com/Luftfartsverket/reqstool-python-hatch-plugin/issues) -[![License](https://img.shields.io/github/license/Luftfartsverket/reqstool-python-hatch-plugin?style=for-the-badge&logo=opensourceinitiative)](https://opensource.org/license/mit/) -[![Build](https://img.shields.io/github/actions/workflow/status/Luftfartsverket/reqstool-python-hatch-plugin/build.yml?style=for-the-badge&logo=github)](https://github.com/Luftfartsverket/reqstool-python-hatch-plugin/actions/workflows/build.yml) -[![Static Badge](https://img.shields.io/badge/Documentation-blue?style=for-the-badge&link=docs)](https://luftfartsverket.github.io/reqstool-python-hatch-plugin/reqstool-python-hatch-plugin/0.0.2/index.html) +[![Commit Activity](https://img.shields.io/github/commit-activity/m/reqstool/reqstool-python-hatch-plugin?label=commits&style=for-the-badge)](https://github.com/reqstool/reqstool-python-hatch-plugin/pulse) +[![GitHub Issues](https://img.shields.io/github/issues/reqstool/reqstool-python-hatch-plugin?style=for-the-badge&logo=github)](https://github.com/reqstool/reqstool-python-hatch-plugin/issues) +[![License](https://img.shields.io/github/license/reqstool/reqstool-python-hatch-plugin?style=for-the-badge&logo=opensourceinitiative)](https://opensource.org/license/mit/) +[![Build](https://img.shields.io/github/actions/workflow/status/reqstool/reqstool-python-hatch-plugin/build.yml?style=for-the-badge&logo=github)](https://github.com/reqstool/reqstool-python-hatch-plugin/actions/workflows/build.yml) +[![Static Badge](https://img.shields.io/badge/Documentation-blue?style=for-the-badge&link=docs)](https://reqstool.github.io/reqstool-python-hatch-plugin/reqstool-python-hatch-plugin/0.0.2/index.html) diff --git a/docs/antora-playbook.yml b/docs/antora-playbook.yml index 7dcb6c4..1e37bbd 100644 --- a/docs/antora-playbook.yml +++ b/docs/antora-playbook.yml @@ -2,7 +2,7 @@ site: title: Reqstool Hatch Plugin Documentation - url: https://github.com/luftfartsverket/reqstool-python-hatch-plugin + url: https://github.com/reqstool/reqstool-python-hatch-plugin start_page: reqstool-python-hatch-plugin::index.adoc content: diff --git a/pyproject.toml b/pyproject.toml index cddc424..0f7920d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,30 +8,23 @@ dynamic = ["version"] authors = [{ name = "LFV", email = "sysdev@lfv.se" }] description = "Hatch plugin to process reqstool-python-decorators when building with Hatch" readme = "README.md" - -homepage = "https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git" -repository = "https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git" -documentation = "https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git" - -urls.Source = 'https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git' - +requires-python = ">=3.10" classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Operating System :: OS Independent", "Development Status :: 4 - Beta", ] - - -requires-python = ">=3.10" - dependencies = [ "reqstool-python-decorators==0.0.9", "ruamel.yaml==0.19.1", "hatchling>=1.20.0", ] -packages = [{ include = "reqstool_python_hatch_plugin", from = "src" }] +[project.urls] +Homepage = "https://reqstool.github.io" +Source = "https://github.com/reqstool/reqstool-python-hatch-plugin.git" +Documentation = "https://github.com/reqstool/reqstool-python-hatch-plugin.git" [project.entry-points.hatch] decorators = "reqstool_python_hatch_plugin.hooks" diff --git a/src/reqstool_python_hatch_plugin/build_hooks/reqstool.py b/src/reqstool_python_hatch_plugin/build_hooks/reqstool.py index ea03ab6..2f4116f 100644 --- a/src/reqstool_python_hatch_plugin/build_hooks/reqstool.py +++ b/src/reqstool_python_hatch_plugin/build_hooks/reqstool.py @@ -45,7 +45,7 @@ class ReqstoolBuildHook(BuildHookInterface): ARCHIVE_OUTPUT_DIR_TEST_RESULTS: str = "test_results" - YAML_LANGUAGE_SERVER = "# yaml-language-server: $schema=https://raw.githubusercontent.com/Luftfartsverket/reqstool-client/main/src/reqstool/resources/schemas/v1/reqstool_config.schema.json\n" # noqa: E501 + YAML_LANGUAGE_SERVER = "# yaml-language-server: $schema=https://raw.githubusercontent.com/reqstool/reqstool-client/main/src/reqstool/resources/schemas/v1/reqstool_config.schema.json\n" # noqa: E501 def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__(*args, **kwargs)