Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd authored Jun 30, 2024
1 parent 3060bc1 commit 8329afe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/adios4dolfinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@

meta = metadata("adios4dolfinx")
__version__ = meta["Version"]
__author__ = meta["Author"]
try:
__author__ = meta["Author"]
except KeyError:
pass
__license__ = meta["License"]
__email__ = meta["Author-email"]
__program_name__ = meta["Name"]
Expand Down

0 comments on commit 8329afe

Please sign in to comment.