Skip to content

Commit

Permalink
fix: Replace dummy/template values in pyproject.toml with real meta…
Browse files Browse the repository at this point in the history
…data (#62)

* fix: Replace Dummy Values in `pyproject.toml` with real metadata

* ignore version temp file

---------

Co-authored-by: Konstantin <konstantin.klein+github@hochfrequenz.de>
  • Loading branch information
hf-kklein and Konstantin authored Oct 7, 2024
1 parent cad7c3e commit 1f8e6b5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,5 @@ dmypy.json
.vscode/

src/_your_package_version.py

src/_ebd_toolchain_version.py
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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}"
'''
Expand Down

0 comments on commit 1f8e6b5

Please sign in to comment.