1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- project = "pydolphinscheduler"
- copyright = "2022, apache"
- author = "apache"
- release = "0.0.1"
- extensions = [
-
- "sphinx.ext.duration",
-
- "sphinx.ext.autodoc",
- "sphinx.ext.viewcode",
- "sphinx.ext.autosectionlabel",
- "sphinx_rtd_theme",
-
- "sphinx_click.ext",
-
- "sphinx_inline_tabs",
- ]
- templates_path = ["_templates"]
- exclude_patterns = []
- autodoc_default_options = {
- "members": True,
- "show-inheritance": True,
- "private-members": True,
- "undoc-members": True,
- "member-order": "groupwise",
- }
- autosectionlabel_prefix_document = True
- html_theme = "sphinx_rtd_theme"
- html_static_path = ["_static"]
|