66
77# -- Path setup --------------------------------------------------------------
88
9- # If extensions (or modules to document with autodoc) are in another directory,
10- # add these directories to sys.path here. If the directory is relative to the
11- # documentation root, use os.path.abspath to make it absolute, like shown here.
12- #
139import os
1410import sys
1511sys .path .insert (0 , os .path .abspath ('../src' ))
1612
17-
1813# -- Project information -----------------------------------------------------
1914
2015project = 'Advanced Image Sensor Interface'
2419# The full version, including alpha/beta/rc tags
2520release = 'v1.0.0'
2621
27-
2822# -- General configuration ---------------------------------------------------
2923
30- # Add any Sphinx extension module names here, as strings. They can be
31- # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32- # ones.
24+ # Add any Sphinx extension module names here, as strings.
3325extensions = [
3426 'sphinx.ext.autodoc' ,
3527 'sphinx.ext.napoleon' ,
4335
4436# List of patterns, relative to source directory, that match files and
4537# directories to ignore when looking for source files.
46- # This pattern also affects html_static_path and html_extra_path.
4738exclude_patterns = []
4839
40+ # The master toctree document.
41+ master_doc = 'index'
4942
5043# -- Options for HTML output -------------------------------------------------
5144
5245# The theme to use for HTML and HTML Help pages. See the documentation for
5346# a list of builtin themes.
54- #
55- html_theme = 'alabaster'
47+ html_theme = "sphinx_rtd_theme"
5648
5749# Add any paths that contain custom static files (such as style sheets) here,
5850# relative to this directory. They are copied after the builtin static files,
6355source_suffix = {
6456 '.rst' : 'restructuredtext' ,
6557 '.md' : 'markdown' ,
66- }
58+ }
0 commit comments