How can I prevent sphinx from displaying the full path to my class?
Try adding add_module_names = False in conf.py
Try adding add_module_names = False in conf.py
It seems to work if the -E option is used along with -a. I added it to the html target in my Makefile and now changes in docstrings are picked up without updating any .rst files.
You can try using sphinx-apidoc. $ sphinx-apidoc –help Usage: sphinx-apidoc [options] -o <output_path> <module_path> [exclude_paths, …] Look recursively in <module_path> for Python modules and packages and create one reST file with automodule directives per package in the <output_path>. You can mix sphinx-apidoc with sphinx-quickstart in order to create the whole doc project like this: $ … Read more