Initial Commit

This commit is contained in:
573dev
2020-10-13 11:42:12 -05:00
commit 2b4120ca2e
25 changed files with 492 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{{obj.name}}
{{obj.name|length * "="}}
.. automodule:: {{obj.name}}{%- block subpackages %}
{%- if obj.subpackages %}
Subpackages
-----------
.. toctree::
:titlesonly:
:maxdepth: 1
{% for subpackage in obj.subpackages %}
{% if subpackage.display %}{{ subpackage.short_name }}/index.rst{% endif -%}
{%- endfor %}
{%- endif %}{%- endblock -%}{%- block submodules %}
{%- if obj.submodules %}
Submodules
----------
.. toctree::
:titlesonly:
:maxdepth: 1
{% for submodule in obj.submodules %}
{% if submodule.display %}{{ submodule.short_name }}/index.rst{% endif -%}
{%- endfor %}
{%- endif %}{%- endblock -%}

View File

@@ -0,0 +1 @@
{% extends "python/module.rst" %}