I'm using sphinx with the numpydoc extension and autosummary. After some experimentation, I added the following options to my conf.py file.
autosummary_generate = True
numpydoc_show_class_members = False
This is giving me a new file for each class referenced like below, and it also creates a summary table of all of the attributes and methods.
.. autosummary::
:toctree: generated/
:nosignatures:
MyClass
The problem is that while there is a summary table of the methods with the first line of the doc string, the names of the methods don't link to anything. How do I get the doc strings of the methods to also create files of their own (or at least generate the documentation in the same file as the class)?
autosummary
directive. Am I misunderstanding something? – Cankerous