Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

building the docs based on the modules in requirements.txt #438

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
# ones.
extensions = [
# "m2r2",
"recommonmark",
"sphinx.ext.autodoc",
"numpydoc",
"sphinx.ext.viewcode",
Expand Down Expand Up @@ -78,11 +77,8 @@
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
# source_suffix = ".rst"
source_suffix = {
".rst": "restructuredtext",
".md": "markdown",
}
source_suffix = ".rst"


# The master toctree document.
master_doc = "index"
Expand All @@ -96,7 +92,7 @@
html_theme = "sphinx_rtd_theme"

# html_theme_path = [sphinx_rtd_theme]
html_theme_path = []
# html_theme_path = []

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down Expand Up @@ -184,7 +180,7 @@
html_logo = "_static/ScribeDataLogo.png"
html_theme_options = {
"logo_only": True,
# "display_version": True,
"display_version": True,
}

# Adding favicon to the docs.
Expand Down
Loading