I'm having to use Sphinx to document a whole project folder, with lots of subfolders and python scripts inside them.
What's the best solution to automate this process? The project will be constantly updated, and the documentation should be properly updated.
- Use python to make a routine to create lots of
.rst
files plusautomodule
Sphinx directive to capture docstrings; - Use some Sphinx directives inside
index.rst
in order to fetch folders and find all the scripts automatically (Is there something like this?)
Sphinx documentation is so though to understand, and I didn't find something like that I want.
Could you help me to discover where to search for the solution?
Thank you!