diff --git a/docs/source/conf.py b/docs/source/conf.py index 3807c0375..48e606a6b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -4,14 +4,15 @@ # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html +import os +import sys +from datetime import datetime + # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -# -import os -import sys sys.path.insert(0, os.path.abspath("../../")) @@ -20,7 +21,7 @@ # -- Project information ----------------------------------------------------- project = "AI2 Tango" -copyright = "2021, Allen Institute for Artificial Intelligence" +copyright = f"{datetime.today().year}, Allen Institute for Artificial Intelligence" author = "Allen Institute for Artificial Intelligence" version = VERSION_SHORT release = VERSION