diff --git a/docs/conf.py b/docs/conf.py index d3fdd63..0555d12 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -44,8 +44,14 @@ # General information about the project. project = "Adafruit Debouncer Library" +creation_year = "2019" current_year = str(datetime.datetime.now().year) -copyright = current_year + " Dave Astels" +year_duration = ( + current_year + if current_year == creation_year + else creation_year + " - " + current_year +) +copyright = year_duration + " Dave Astels" author = "Dave Astels" # The version info for the project you're documenting, acts as replacement for