How to generate one page per module with sphinx

Viewed 3628

We are using Sphinx to generate our Python documentation.

This is the command line we use:

sphinx-apidoc -F -o %WORKSPACE%\docs_rst %PACKAGE%

sphinx-build -b html %WORKSPACE%\docs_rst %WORKSPACE%\docs

The problem is that we get one page per package. What we would really need though is one page per module as the page gets way too long otherwise.

How would I set this up please?

2 Answers
Related