I want to generate documentation for my package. Every file in the project contains extensive documentation. Is there a way to quickly add my entire project to the documetation index?
I'd like to automatically generate some documentation for the entire project with as little as possible work. I started by adding the following to index.rst:
.. automodule:: mymodulename
:members:
All that seems to have done is document elenments in the __init__.py
file (just a docstring) - is there any way I can make it document everything else? I'm looking to add absolutely everything defined in my package and have every single class, constant, function (etc) in the package be added to the appropriate index.
Can this be done?