File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 7
7
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8
8
from __future__ import annotations
9
9
10
+ from importlib .metadata import version as _version
11
+
10
12
project = "django_mongodb"
11
13
copyright = "2024, The MongoDB Python Team"
12
14
author = "The MongoDB Python Team"
13
- release = "0.1.0.dev0"
15
+ release = _version ( "django_mongodb" )
14
16
15
17
# -- General configuration ---------------------------------------------------
16
18
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
17
19
18
20
extensions = []
19
21
20
- templates_path = ["_templates" ]
22
+ # templates_path = ["_templates"]
21
23
exclude_patterns = []
22
24
23
25
24
26
# -- Options for HTML output -------------------------------------------------
25
27
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
26
28
27
29
html_theme = "alabaster"
28
- html_static_path = ["_static" ]
30
+ # html_static_path = ["_static"]
You can’t perform that action at this time.
0 commit comments