Use year duration range for copyright attribution

This commit is contained in:
Alec Delaney 2022-08-23 17:26:23 -04:00
parent 2b8c8c21b7
commit 5436a0f27f

View file

@ -47,8 +47,14 @@ master_doc = "index"
# General information about the project.
project = "Adafruit CircuitPython ticks Library"
creation_year = "2021"
current_year = str(datetime.datetime.now().year)
copyright = current_year + " Jeff Epler"
year_duration = (
current_year
if current_year == creation_year
else creation_year + " - " + current_year
)
copyright = year_duration + " Jeff Epler"
author = "Jeff Epler"
# The version info for the project you're documenting, acts as replacement for