Use year duration range for copyright attribution

This commit is contained in:
Alec Delaney 2022-08-23 17:26:22 -04:00
parent 56beb5c116
commit fc73ddcca3

View file

@ -55,8 +55,14 @@ master_doc = "index"
# General information about the project.
project = "Adafruit PortalBase Library"
creation_year = "2020"
current_year = str(datetime.datetime.now().year)
copyright = current_year + " Melissa LeBlanc-Williams"
year_duration = (
current_year
if current_year == creation_year
else creation_year + " - " + current_year
)
copyright = year_duration + " Melissa LeBlanc-Williams"
author = "Melissa LeBlanc-Williams"
# The version info for the project you're documenting, acts as replacement for