We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129b68a commit fe2b233Copy full SHA for fe2b233
docs/conf.py
@@ -63,8 +63,14 @@
63
64
# General information about the project.
65
project = "Adafruit AMG88xx Library"
66
+creation_year = "2017"
67
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Dean Miller for Adafruit Industries"
68
+year_duration = (
69
+ current_year
70
+ if current_year == creation_year
71
+ else creation_year + " - " + current_year
72
+)
73
+copyright = year_duration + " Dean Miller for Adafruit Industries"
74
author = "Dean Miller"
75
76
# The version info for the project you're documenting, acts as replacement for
0 commit comments