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 1acc825 commit ed25202Copy full SHA for ed25202
docs/conf.py
@@ -14,6 +14,7 @@
14
15
import sys
16
import os
17
+import datetime
18
from dotenv import load_dotenv
19
20
# If extensions (or modules to document with autodoc) are in another directory,
@@ -52,8 +53,10 @@
52
53
master_doc = 'index'
54
55
# General information about the project.
56
+
57
+year = datetime.datetime.now().year
58
project = 'DeepDiff'
-copyright = '2015-2024, Sep Dehpour'
59
+copyright = '2015-{}, Sep Dehpour'.format(year)
60
author = 'Sep Dehpour'
61
62
# The version info for the project you're documenting, acts as replacement for
0 commit comments