Keep copyright up to date in documentation
This commit is contained in:
parent
e40a53f9cf
commit
0c620b32c3
1 changed files with 3 additions and 1 deletions
|
|
@ -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(".."))
|
||||||
|
|
||||||
|
|
@ -43,7 +44,8 @@ master_doc = "index"
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = "Adafruit BLE_MIDI Library"
|
project = "Adafruit BLE_MIDI Library"
|
||||||
copyright = "2020 Scott Shawcroft"
|
current_year = str(datetime.datetime.now().year)
|
||||||
|
copyright = current_year + " 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