|
37 | 37 | ]
|
38 | 38 | napoleon_use_ivar = True
|
39 | 39 |
|
| 40 | +# Add any paths that contain custom static files (such as style sheets) here, |
| 41 | +# relative to this directory. They are copied after the builtin static files, |
| 42 | +# so a file named "default.css" will overwrite the builtin "default.css". |
| 43 | +html_static_path = ['static'] |
| 44 | +html_css_files = ['functions.css'] |
| 45 | + |
40 | 46 | # Add any paths that contain templates here, relative to this directory.
|
41 | 47 | templates_path = ['templates']
|
42 | 48 |
|
43 | 49 | # List of patterns, relative to source directory, that match files and
|
44 | 50 | # directories to ignore when looking for source files.
|
45 | 51 | # This pattern also affects html_static_path and html_extra_path.
|
46 |
| -exclude_patterns = ['templates'] |
| 52 | +# exclude_patterns = ['templates'] |
47 | 53 |
|
48 | 54 | autodoc_typehints = 'description'
|
49 | 55 | autodoc_typehints_description_target = 'documented'
|
50 | 56 | autodoc_default_options = {"members": True, "inherited-members": True}
|
51 |
| - |
| 57 | +autodoc_member_order = 'bysource' |
52 | 58 |
|
53 | 59 | # -- Options for HTML output -------------------------------------------------
|
54 | 60 |
|
55 | 61 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
56 | 62 | # a list of builtin themes.
|
57 | 63 | #
|
58 |
| -# html_theme = 'alabaster' |
59 |
| - |
60 |
| -# Add any paths that contain custom static files (such as style sheets) here, |
61 |
| -# relative to this directory. They are copied after the builtin static files, |
62 |
| -# so a file named "default.css" will overwrite the builtin "default.css". |
63 |
| -html_static_path = [] |
| 64 | +html_theme = 'alabaster' |
64 | 65 |
|
65 | 66 |
|
66 | 67 | # Changes autoclass "variables" to "attributes".
|
|
0 commit comments