Skip to content

Commit b98c546

Browse files
committed
avoid parsing multiple authors from metadata
1 parent 400ba6e commit b98c546

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

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

0 commit comments

Comments
 (0)