|
30 | 30 | # Add any Sphinx extension module names here, as strings. They can be
|
31 | 31 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
32 | 32 | # ones.
|
33 |
| -extensions = ['sphinx.ext.todo', 'sphinx.ext.viewcode', 'sphinx.ext.autodoc' |
| 33 | +extensions = ['sphinx.ext.todo', 'sphinx.ext.viewcode', 'sphinx.ext.autodoc', 'numpydoc', 'sphinx.ext.autosummary' |
34 | 34 | ]
|
35 | 35 |
|
36 | 36 | # Add any paths that contain templates here, relative to this directory.
|
|
39 | 39 | # List of patterns, relative to source directory, that match files and
|
40 | 40 | # directories to ignore when looking for source files.
|
41 | 41 | # This pattern also affects html_static_path and html_extra_path.
|
42 |
| -exclude_patterns = ['*tests*'] |
| 42 | +exclude_patterns = ['*tests*', '*test*'] |
43 | 43 |
|
| 44 | +numpydoc_show_class_members = True |
| 45 | + |
| 46 | +class_members_toctree = False |
| 47 | + |
| 48 | +pygments_style = 'sphinx' |
| 49 | + |
| 50 | +autodoc_mock_imports = ['codeflare.pipelines.tests'] |
44 | 51 |
|
45 | 52 | # -- Options for HTML output -------------------------------------------------
|
46 | 53 |
|
47 | 54 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
48 | 55 | # a list of builtin themes.
|
49 | 56 | #
|
50 |
| -html_theme = 'alabaster' |
| 57 | +html_theme = 'sphinx_rtd_theme' |
51 | 58 |
|
52 | 59 | # Add any paths that contain custom static files (such as style sheets) here,
|
53 | 60 | # relative to this directory. They are copied after the builtin static files,
|
|
0 commit comments