Use year duration range for copyright attribution
This commit is contained in:
parent
e8c142707c
commit
aa2d36296c
1 changed files with 7 additions and 1 deletions
|
|
@ -51,8 +51,14 @@ master_doc = "index"
|
|||
|
||||
# General information about the project.
|
||||
project = "Adafruit EPD Library"
|
||||
creation_year = "2018"
|
||||
current_year = str(datetime.datetime.now().year)
|
||||
copyright = current_year + " Dean Miller"
|
||||
year_duration = (
|
||||
current_year
|
||||
if current_year == creation_year
|
||||
else creation_year + " - " + current_year
|
||||
)
|
||||
copyright = year_duration + " Dean Miller"
|
||||
author = "Dean Miller"
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
|
|
|
|||
Loading…
Reference in a new issue