我正在使用 Sphinx 来记录 Python 模块。
我有一个定义了作者和版权的模块。
__author__ = "John Doe <johndoe@example.com>"
__copyright__ = "Copyright 2015-2016 Dummy Corp All Rights Reserved."
我尝试将 :special-members: 标签添加到 automodule 指令中。
.. automodule:: PyFabric
:special-members:
这记录了作者,但没有获得版权。有没有办法让 Sphinx 识别并添加版权?