Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)



Expand Down
2 changes: 1 addition & 1 deletion docs/antora-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
17 changes: 5 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/reqstool_python_hatch_plugin/build_hooks/reqstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down