Use year duration range for copyright attribution

This commit is contained in:
Alec Delaney 2022-08-23 17:26:20 -04:00
parent dcd7d5f9fa
commit caf680b8ee

View file

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