fatiando/rockhound

View on GitHub
doc/_templates/autosummary/module.rst

Summary

Maintainability
Test Coverage
.. raw:: html

    <div class="api-module">

``{{ fullname }}``
{% for i in range(fullname|length + 15) %}-{% endfor %}

.. raw:: html

    <hr>

.. automodule:: {{ fullname }}

{% block classes %}
{% if classes %}
.. rubric:: Classes

.. autosummary::
  :toctree: ./
{% for item in classes %}
  {{ fullname }}.{{ item }}
{% endfor %}
{% endif %}
{% endblock %}


{% block functions %}
{% if functions %}
.. rubric:: Functions

.. autosummary::
  :toctree: ./
{% for item in functions %}
  {{ fullname }}.{{ item }}
{% endfor %}
{% endif %}
{% endblock %}


{% block exceptions %}
{% if exceptions %}
.. rubric:: Exceptions

.. autosummary::
  :toctree: ./
{% for item in exceptions %}
  {{ fullname }}.{{ item }}
{% endfor %}
{% endif %}
{% endblock %}

.. raw:: html

    </div>