Use year duration range for copyright attribution
This commit is contained in:
parent
dc9d986ce1
commit
6cd4217524
1 changed files with 7 additions and 1 deletions
|
|
@ -47,8 +47,14 @@ master_doc = "index"
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = "Adafruit PIOASM Library"
|
project = "Adafruit PIOASM Library"
|
||||||
|
creation_year = "2021"
|
||||||
current_year = str(datetime.datetime.now().year)
|
current_year = str(datetime.datetime.now().year)
|
||||||
copyright = current_year + " Scott Shawcroft"
|
year_duration = (
|
||||||
|
current_year
|
||||||
|
if current_year == creation_year
|
||||||
|
else creation_year + " - " + current_year
|
||||||
|
)
|
||||||
|
copyright = year_duration + " Scott Shawcroft"
|
||||||
author = "Scott Shawcroft"
|
author = "Scott Shawcroft"
|
||||||
|
|
||||||
# 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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue