I'm using Sphinx to document a Python module.
I have a module that has author and copyright defined.
__author__ = "John Doe <johndoe@example.com>"
__copyright__ = "Copyright 2015-2016 Dummy Corp All Rights Reserved."
I tried adding the :special-members: tag to the automodule directive.
.. automodule:: PyFabric
:special-members:
This documents the author, but copyright isn't picked up. Is there anyway to get Sphinx to recognize and add the copyright?