We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6014571 commit 71d84d5Copy full SHA for 71d84d5
1 file changed
docs/conf.py
@@ -18,6 +18,7 @@
18
#
19
import os
20
import sys
21
+from datetime import datetime
22
23
sys.path.insert(0, os.path.abspath(".."))
24
@@ -52,9 +53,10 @@
52
53
# The master toctree document.
54
master_doc = "index"
55
56
+today_year = datetime.today().year
57
# General information about the project.
58
project = "FastAPI-JSONAPI"
-copyright = "2022, MTS AI"
59
+copyright = f"{today_year}, MTS AI"
60
author = "MTS AI"
61
62
# The version info for the project you're documenting, acts as replacement for
0 commit comments