X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=docs%2Fconf.py;h=182d5a3cc8814529ee5a8ad7ed06ddecbae50c4d;hb=f44a316caad851cb7cf38120746ed1df72dca858;hp=7b5287fbe7947a9098cb833fc1455054e619f131;hpb=69566c003b4f1c3a4905f37d3735d7921502d14a;p=pyutils.git diff --git a/docs/conf.py b/docs/conf.py index 7b5287f..182d5a3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,8 +55,27 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # a list of builtin themes. # html_theme = 'sphinx_rtd_theme' +html_theme_options = { + 'navigation_depth': 5, +} # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] + + +# Don't skip __init__()! +def skip(app, what, name, obj, would_skip, options): + return would_skip + + +def setup(app): + app.connect("autodoc-skip-member", skip) + + +doctest_global_setup = ''' +import pyutils +''' + +autoclass_content = 'both'