Dear all,
I have an .rst file with only one line
.. automodule:: elephant.spike_train_processing
`elephant/spike_train_processing.py` contains
.. autosummary::
:toctree: toctree/spike_train_processing/
Synchrotool
which produces
.. autoclass:: Synchrotool
but I want
.. autoclass:: Synchrotool
:members:
How do I force :members: into each class throughout the whole python package?
Thank you.
Danylo