I have a project with a few .py files that only contains a few dictionaries. Like this:
# My file
dictionary = {'key1': 'value1', 'key2: 'value2'}
But much larger and longer and I would like to document this with Sphinx but I can't get it to work properly.
The files are found by Sphinx just fine and show up under Modules as folder.file but they are all empty? What am I doing wrong? Why won't the dictionaries show up?
in the .rst file for the folder it shows:
folder.file module
--------------------
.. automodule:: folder.file
:members:
:undoc-members:
:show-inheritance:
Am I missing something? Thanks in advance!