Keep copyright up to date in documentation

This commit is contained in:
Alec Delaney 2022-08-22 21:36:30 -04:00
parent 91752b6b2f
commit e8c142707c

View file

@ -6,6 +6,7 @@
import os import os
import sys import sys
import datetime
sys.path.insert(0, os.path.abspath("..")) sys.path.insert(0, os.path.abspath(".."))
@ -50,7 +51,8 @@ master_doc = "index"
# General information about the project. # General information about the project.
project = "Adafruit EPD Library" project = "Adafruit EPD Library"
copyright = "2018 Dean Miller" current_year = str(datetime.datetime.now().year)
copyright = current_year + " Dean Miller"
author = "Dean Miller" author = "Dean Miller"
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for