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 77# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88from __future__ import annotations
99
10+ from importlib .metadata import version as _version
11+
1012project = "django_mongodb"
1113copyright = "2024, The MongoDB Python Team"
1214author = "The MongoDB Python Team"
13- release = "0.1.0.dev0"
15+ release = _version ( "django_mongodb" )
1416
1517# -- General configuration ---------------------------------------------------
1618# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1719
1820extensions = []
1921
20- templates_path = ["_templates" ]
22+ # templates_path = ["_templates"]
2123exclude_patterns = []
2224
2325
2426# -- Options for HTML output -------------------------------------------------
2527# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2628
2729html_theme = "alabaster"
28- html_static_path = ["_static" ]
30+ # html_static_path = ["_static"]
You can’t perform that action at this time.
0 commit comments