Skip to content

Commit 30f6175

Browse files
committed
chore: update repository URLs and documentation links to reflect new ownership
1 parent 392169b commit 30f6175

4 files changed

Lines changed: 12 additions & 19 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
[![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)
3-
[![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)
4-
[![License](https://img.shields.io/github/license/Luftfartsverket/reqstool-python-hatch-plugin?style=for-the-badge&logo=opensourceinitiative)](https://opensource.org/license/mit/)
5-
[![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)
6-
[![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)
2+
[![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)
3+
[![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)
4+
[![License](https://img.shields.io/github/license/reqstool/reqstool-python-hatch-plugin?style=for-the-badge&logo=opensourceinitiative)](https://opensource.org/license/mit/)
5+
[![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)
6+
[![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)
77

88

99

docs/antora-playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
site:
44
title: Reqstool Hatch Plugin Documentation
5-
url: https://github.com/luftfartsverket/reqstool-python-hatch-plugin
5+
url: https://github.com/reqstool/reqstool-python-hatch-plugin
66
start_page: reqstool-python-hatch-plugin::index.adoc
77

88
content:

pyproject.toml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,23 @@ dynamic = ["version"]
88
authors = [{ name = "LFV", email = "sysdev@lfv.se" }]
99
description = "Hatch plugin to process reqstool-python-decorators when building with Hatch"
1010
readme = "README.md"
11-
12-
homepage = "https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git"
13-
repository = "https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git"
14-
documentation = "https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git"
15-
16-
urls.Source = 'https://github.com/Luftfartsverket/reqstool-python-hatch-plugin.git'
17-
11+
requires-python = ">=3.10"
1812
classifiers = [
1913
"License :: OSI Approved :: MIT License",
2014
"Programming Language :: Python :: 3",
2115
"Operating System :: OS Independent",
2216
"Development Status :: 4 - Beta",
2317
]
24-
25-
26-
requires-python = ">=3.10"
27-
2818
dependencies = [
2919
"reqstool-python-decorators==0.0.9",
3020
"ruamel.yaml==0.19.1",
3121
"hatchling>=1.20.0",
3222
]
3323

34-
packages = [{ include = "reqstool_python_hatch_plugin", from = "src" }]
24+
[project.urls]
25+
Homepage = "https://reqstool.github.io"
26+
Source = "https://github.com/reqstool/reqstool-python-hatch-plugin.git"
27+
Documentation = "https://github.com/reqstool/reqstool-python-hatch-plugin.git"
3528

3629
[project.entry-points.hatch]
3730
decorators = "reqstool_python_hatch_plugin.hooks"

src/reqstool_python_hatch_plugin/build_hooks/reqstool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ReqstoolBuildHook(BuildHookInterface):
4545

4646
ARCHIVE_OUTPUT_DIR_TEST_RESULTS: str = "test_results"
4747

48-
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
48+
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
4949

5050
def __init__(self, *args: Any, **kwargs: Any) -> None:
5151
super().__init__(*args, **kwargs)

0 commit comments

Comments
 (0)