Initial commit

This commit is contained in:
2022-11-04 11:53:06 +01:00
parent 89bacb501e
commit 3689852205
36 changed files with 1962 additions and 1 deletions

17
doc/_templates/class.rst vendored Normal file
View File

@@ -0,0 +1,17 @@
:mod:`{{module}}`.{{objname}}
{{ underline }}==============
.. currentmodule:: {{ module }}
.. autoclass:: {{ objname }}
:members:
{% block methods %}
.. automethod:: __init__
{% endblock %}
.. include:: {{module}}.{{objname}}.examples
.. raw:: html
<div style='clear:both'></div>

12
doc/_templates/function.rst vendored Normal file
View File

@@ -0,0 +1,12 @@
:mod:`{{module}}`.{{objname}}
{{ underline }}====================
.. currentmodule:: {{ module }}
.. autofunction:: {{ objname }}
.. include:: {{module}}.{{objname}}.examples
.. raw:: html
<div style='clear:both'></div>

16
doc/_templates/numpydoc_docstring.py vendored Normal file
View File

@@ -0,0 +1,16 @@
{{index}}
{{summary}}
{{extended_summary}}
{{parameters}}
{{returns}}
{{yields}}
{{other_parameters}}
{{attributes}}
{{raises}}
{{warns}}
{{warnings}}
{{see_also}}
{{notes}}
{{references}}
{{examples}}
{{methods}}