diff --git a/docs/conf.py b/docs/conf.py index d81082a..139863c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,8 +38,14 @@ # General information about the project. project = "Adafruit CircuitPython DotStar Library" +creation_year = "2017" current_year = str(datetime.datetime.now().year) -copyright = current_year + " Scott Shawcroft, Limor Fried & Damien P. George" +year_duration = ( + current_year + if current_year == creation_year + else creation_year + " - " + current_year +) +copyright = year_duration + " Scott Shawcroft, Limor Fried & Damien P. George" author = "Scott Shawcroft, Limor Fried & Damien P. George" # The version info for the project you're documenting, acts as replacement for