Skip to content

Commit

Permalink
avoid parsing multiple authors from metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
berombau committed May 6, 2024
1 parent 400ba6e commit b98c546
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

info = metadata("flowsom")
project_name = info["Name"]
author = info["Author"]
copyright = f"{datetime.now():%Y}, {author}."
version = info["Version"]
author = project_name + " authors"
copyright = f"{datetime.now():%Y}, {author}"
version: str = info["Version"]
urls = dict(pu.split(", ") for pu in (info.get_all("Project-URL") or []))
repository_url = urls["Source"]

Expand Down

0 comments on commit b98c546

Please sign in to comment.