I'm using Sphinx to document my Python package. When I use the automodule directive on my module:
.. automodule:: mymodule
:members:
It prints everything including the GPL notice in the docstring. Is there any way to tell Sphinx to ignore the docstring/GPL or should I leave it included in the documentation?