Skip to content

Commit 64b5325

Browse files
Merge pull request #95 from AD-SDL/diaspora-dev
Automagically extract authors from wei package
2 parents 9d8c794 + 3c5c3ed commit 64b5325

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/source/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@
1313
#
1414
import os
1515
import sys
16+
from importlib import metadata
1617

1718
sys.path.insert(0, os.path.abspath("../.."))
1819

1920

2021
# -- Project information -----------------------------------------------------
2122

23+
meta = metadata.metadata("ad_sdl.wei")
2224
project = "Workflow Execution Interface"
2325
copyright = "2023, Argonne National Laboratory"
24-
author = "Rafael Vescovi, Ryan Lewis, Kyle Hippe, Tobias Ginsburg"
26+
author = str(meta["Author-email"])
2527

2628
# The full version, including alpha/beta/rc tags
2729
release = "0.5.1"

0 commit comments

Comments
 (0)