Skip to content

Commit

Permalink
Sbachmei/mic 5561/add indexes to api (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebachmeier authored Dec 30, 2024
1 parent 0d83c0f commit 1261e53
Show file tree
Hide file tree
Showing 23 changed files with 70 additions and 0 deletions.
1 change: 1 addition & 0 deletions build-doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ignore, Created by Makefile, Fri 27 Dec 2024 12:52:35 PM PST
3 changes: 3 additions & 0 deletions docs/nitpick-exceptions
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
py:class LayeredConfigTree
py:class layered_config_tree.LayeredConfigTree
py:class layered_config_tree.main.LayeredConfigTree
1 change: 1 addition & 0 deletions docs/source/api_reference/configuration.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.configuration
1 change: 1 addition & 0 deletions docs/source/api_reference/graph_components.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.graph_components
1 change: 1 addition & 0 deletions docs/source/api_reference/implementation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.implementation
9 changes: 9 additions & 0 deletions docs/source/api_reference/index.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
API Reference
=============

.. automodule:: easylink

.. toctree::
:maxdepth: 1
:glob:

*
*/index
1 change: 1 addition & 0 deletions docs/source/api_reference/pipeline.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.pipeline
1 change: 1 addition & 0 deletions docs/source/api_reference/pipeline_graph.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.pipeline_graph
1 change: 1 addition & 0 deletions docs/source/api_reference/pipeline_schema.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.pipeline_schema
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.pipeline_schema_constants.development
10 changes: 10 additions & 0 deletions docs/source/api_reference/pipeline_schema_constants/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
PipelineSchema Constants
========================

.. automodule:: easylink.pipeline_schema_constants

.. toctree::
:maxdepth: 1
:glob:

*
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.pipeline_schema_constants.tests
1 change: 1 addition & 0 deletions docs/source/api_reference/rule.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.rule
1 change: 1 addition & 0 deletions docs/source/api_reference/runner.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.runner
1 change: 1 addition & 0 deletions docs/source/api_reference/step.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: easylink.step
2 changes: 2 additions & 0 deletions docs/source/api_reference/utilities/data_utils.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. automodule:: easylink.utilities.data_utils

2 changes: 2 additions & 0 deletions docs/source/api_reference/utilities/general_utils.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. automodule:: easylink.utilities.general_utils

10 changes: 10 additions & 0 deletions docs/source/api_reference/utilities/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Utilities
=========

.. automodule:: easylink.utilities

.. toctree::
:maxdepth: 1
:glob:

*
2 changes: 2 additions & 0 deletions docs/source/api_reference/utilities/paths.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. automodule:: easylink.utilities.paths

2 changes: 2 additions & 0 deletions docs/source/api_reference/utilities/validation_utils.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. automodule:: easylink.utilities.validation_utils

6 changes: 6 additions & 0 deletions src/easylink/pipeline_schema_constants/development.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
============================
Development Pipeline Schemas
============================
"""

from easylink.graph_components import (
EdgeParams,
InputSlot,
Expand Down
6 changes: 6 additions & 0 deletions src/easylink/pipeline_schema_constants/tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
=====================
Test Pipeline Schemas
=====================
"""

from easylink.graph_components import (
EdgeParams,
InputSlot,
Expand Down
6 changes: 6 additions & 0 deletions src/easylink/utilities/paths.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
=========
Filepaths
=========
"""

from pathlib import Path

# TODO: We'll need to update this to be more generic for external users and have a way of configuring this
Expand Down

0 comments on commit 1261e53

Please sign in to comment.