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 d76bc06 commit b16f664Copy full SHA for b16f664
docs/conf.py
@@ -52,8 +52,14 @@
52
53
# General information about the project.
54
project = "Adafruit stmpe610 Library"
55
+creation_year = "2017"
56
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Jerry Needell"
57
+year_duration = (
58
+ current_year
59
+ if current_year == creation_year
60
+ else creation_year + " - " + current_year
61
+)
62
+copyright = year_duration + " Jerry Needell"
63
author = "Jerry Needell"
64
65
# The version info for the project you're documenting, acts as replacement for
0 commit comments