I am using the Sphinx autodoc extension for documenting my Python project. I have the following in my docs for a class:
.. automodule:: ClassName
:members:
:undoc-members:
:show-inheritance:
The class I am documenting has static members which I don't want to include in documentation. Is there any way to do so?