diff --git a/docs/conf.py b/docs/conf.py index ed4d627..2a95af6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,8 +39,14 @@ # General information about the project. project = "Adafruit HCSR04 Library" +creation_year = "2017" current_year = str(datetime.datetime.now().year) -copyright = current_year + " Mike Mabey" +year_duration = ( + current_year + if current_year == creation_year + else creation_year + " - " + current_year +) +copyright = year_duration + " Mike Mabey" author = "Mike Mabey" # The version info for the project you're documenting, acts as replacement for