From 0646e067d027cf82bd0c0a6a44a5ad79970bcff1 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 7 Oct 2024 13:08:05 +0200 Subject: [PATCH 1/2] fix: Replace Dummy Values in `pyproject.toml` with real metadata --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 715771f..49173fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [project] -name = "your-favourite-package-name" -description = "Description of your package" +name = "ebd-toolchain" +description = "Combines the features of ebdamame and rebdhuhn to automatically generate SVGs from EBD.docx files" license = { text = "MIT" } requires-python = ">=3.11" -authors = [{ name = "your name", email = "your@email.address" }] -keywords = ["your", "important", "keywords"] +authors = [{ name = "Hochfrequenz Unternehmensberatung GmbH", email = "info+github@hochfrequenz.de" }] +keywords = ["EBD", "rebdhuhn", "ebdamame", "scraping", "python-docx", "kroki", "entscheidungsbaumdiagramm"] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", @@ -35,8 +35,8 @@ tests = ["pytest==8.3.3"] type_check = ["mypy==1.11.2"] [project.urls] -Changelog = "https://github.com/Hochfrequenz/python_template_repository/releases" -Homepage = "https://github.com/Hochfrequenz/python_template_repository" +Changelog = "https://github.com/Hochfrequenz/ebd_toolchain/releases" +Homepage = "https://github.com/Hochfrequenz/ebd_toolchain" [tool.black] line-length = 120 From fc17742f7be207e4ab663a6fadc158d3b04ed4fd Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 7 Oct 2024 13:12:21 +0200 Subject: [PATCH 2/2] ignore version temp file --- .gitignore | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fb33be7..e8c3fd5 100644 --- a/.gitignore +++ b/.gitignore @@ -134,3 +134,5 @@ dmypy.json .vscode/ src/_your_package_version.py + +src/_ebd_toolchain_version.py diff --git a/pyproject.toml b/pyproject.toml index 49173fe..79de354 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,7 @@ fragments = [{ path = "README.md" }] source = "vcs" [tool.hatch.build.hooks.vcs] -version-file = "src/_your_package_version.py" +version-file = "src/_ebd_toolchain_version.py" template = ''' version = "{version}" '''