We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d363010 commit d0724b6Copy full SHA for d0724b6
docs/source/conf.py
@@ -29,9 +29,10 @@
29
#
30
# needs_sphinx = '1.0'
31
32
-from recommonmark.parser import CommonMarkParser
+import datetime
33
import sphinx_rtd_theme
34
35
+from recommonmark.parser import CommonMarkParser
36
37
# Add any Sphinx extension module names here, as strings. They can be
38
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
@@ -58,7 +59,8 @@
58
59
60
# General information about the project.
61
project = 'BigchainDB Javascript Driver'
-copyright = '2017, BigchainDB'
62
+now = datetime.datetime.now()
63
+copyright = str(now.year) + ', BigchainDB Contributors'
64
author = 'BigchainDB Contributors'
65
66
# The version info for the project you're documenting, acts as replacement for
0 commit comments