-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ord_schema API docs * update years * update templates dir * install package during build * remove stale developer sections
- v0.3.98
- v0.3.97
- v0.3.96
- v0.3.95
- v0.3.94
- v0.3.93
- v0.3.92
- v0.3.91
- v0.3.90
- v0.3.89
- v0.3.88
- v0.3.87
- v0.3.86
- v0.3.85
- v0.3.84
- v0.3.83
- v0.3.82
- v0.3.81
- v0.3.80
- v0.3.79
- v0.3.78
- v0.3.77
- v0.3.76
- v0.3.75
- v0.3.74
- v0.3.73
- v0.3.72
- v0.3.71
- v0.3.70
- v0.3.69
- v0.3.68
- v0.3.67
- v0.3.66
- v0.3.65
- v0.3.64
- v0.3.63
- v0.3.62
- v0.3.61
- v0.3.60
- v0.3.59
- v0.3.58
- v0.3.57
- v0.3.56
- v0.3.55
- v0.3.54
- v0.3.53
- v0.3.52
- v0.3.51
- v0.3.50
- v0.3.49
- v0.3.48
- v0.3.47
- v0.3.46
- v0.3.45
- v0.3.44
- v0.3.43
- v0.3.42
- v0.3.41
- v0.3.40
- v0.3.39
- v0.3.38
- v0.3.37
- v0.3.36
- v0.3.35
- v0.3.34
- v0.3.33
- v0.3.32
- v0.3.31
- v0.3.30
- v0.3.29
- v0.3.28
- v0.3.27
Showing
12 changed files
with
182 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Copied from /home/skearnes/miniconda3/lib/python3.9/site-packages/sphinx/templates/apidoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{%- macro automodule(modname, options) -%} | ||
.. automodule:: {{ modname }} | ||
{%- for option in options %} | ||
:{{ option }}: | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- macro toctree(docnames) -%} | ||
.. toctree:: | ||
:maxdepth: {{ maxdepth }} | ||
{% for docname in docnames %} | ||
{{ docname }} | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- if is_namespace %} | ||
{{- [pkgname, "namespace"] | join(" ") | e | heading }} | ||
{% else %} | ||
{{- [pkgname] | join(" ") | e | heading }} | ||
{% endif %} | ||
|
||
{%- if is_namespace %} | ||
.. py:module:: {{ pkgname }} | ||
{% endif %} | ||
|
||
{%- if modulefirst and not is_namespace %} | ||
{{ automodule(pkgname, automodule_options) }} | ||
{% endif %} | ||
|
||
{%- if subpackages %} | ||
Subpackages | ||
----------- | ||
|
||
{{ toctree(subpackages) }} | ||
{% endif %} | ||
|
||
{%- if submodules %} | ||
{% if separatemodules %} | ||
{{ toctree(submodules) }} | ||
{% else %} | ||
{%- for submodule in submodules %} | ||
{% if show_headings %} | ||
{{- [submodule] | join(" ") | e | heading(2) }} | ||
{% endif %} | ||
{{ automodule(submodule, automodule_options) }} | ||
{% endfor %} | ||
{%- endif %} | ||
{%- endif %} | ||
|
||
{%- if not modulefirst and not is_namespace %} | ||
Module contents | ||
--------------- | ||
|
||
{{ automodule(pkgname, automodule_options) }} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ord\_schema.macros | ||
================== | ||
|
||
.. automodule:: ord_schema.macros | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
|
||
ord\_schema.macros.solutions | ||
---------------------------- | ||
|
||
.. automodule:: ord_schema.macros.solutions | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.macros.workups | ||
-------------------------- | ||
|
||
.. automodule:: ord_schema.macros.workups | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
ord\_schema | ||
=========== | ||
|
||
.. automodule:: ord_schema | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
ord_schema.macros | ||
|
||
|
||
ord\_schema.frozen\_message | ||
--------------------------- | ||
|
||
.. automodule:: ord_schema.frozen_message | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.message\_helpers | ||
---------------------------- | ||
|
||
.. automodule:: ord_schema.message_helpers | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.resolvers | ||
--------------------- | ||
|
||
.. automodule:: ord_schema.resolvers | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.templating | ||
---------------------- | ||
|
||
.. automodule:: ord_schema.templating | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.units | ||
----------------- | ||
|
||
.. automodule:: ord_schema.units | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.updates | ||
------------------- | ||
|
||
.. automodule:: ord_schema.updates | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
ord\_schema.validations | ||
----------------------- | ||
|
||
.. automodule:: ord_schema.validations | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters