Currently I do this:
conf.py:
autosummary_generate = True
reference.rst:
package_1
---------
.. autosummary::
:toctree: _generated
package_1.module_1
package_1.module_2
package_1.module_3
...
This will generate an overview table for each module, with entries for each module that nicely link to detail pages.
I have two questions:
- Do I really have to enumerate every single module?
- How can I control the options of the detail pages?
Ad 1.: I would like to do s.th like this (which currently doesn't work):
.. autosummary:: package_1
:toctree: _generated
:members:
(Or maybe a new autopackage
command.)
Ad 2.:
I would like to pass options like the ones that automodule
or autoclass
expect, e.g.:
.. autosummary::
:toctree: _generated
:undoc-members:
:private-members:
This seems to be an obvious task, so I am probably missing some information. Is there an easy alternative way to accomplish this?