Skip to content

Commit

Permalink
MSEI Reference docs added
Browse files Browse the repository at this point in the history
  • Loading branch information
AFg6K7h4fhy2 committed Mar 18, 2024
1 parent 16c3dd6 commit 15a9327
Show file tree
Hide file tree
Showing 12 changed files with 104 additions and 5 deletions.
20 changes: 19 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import os
import sys
sys.path.insert(0, os.path.abspath('../../model/src'))


# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
Expand All @@ -14,11 +18,25 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = []
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosectionlabel',
'sphinx.ext.autosummary',
'sphinx.ext.doctest',
'sphinx.ext.napoleon',
'sphinx.ext.duration',
'sphinx.ext.githubpages',
'sphinx.ext.inheritance_diagram',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinx.ext.mathjax',
]

templates_path = ['_templates']
exclude_patterns = []

todo_include_todos = True



# -- Options for HTML output -------------------------------------------------
Expand Down
11 changes: 7 additions & 4 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to CFA Multisignal Renewal's documentation!
===================================================
CFA Multisignal Renewal Documentation
=====================================

Welcome, CFA wishes you a nice day!

.. toctree::
:maxdepth: 2
:maxdepth: 4
:caption: Contents:

msei_reference/index


Indices and tables
Indices And Tables
==================

* :ref:`genindex`
Expand Down
7 changes: 7 additions & 0 deletions docs/source/msei_reference/basic.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Basic Renewal Model Module
==========================

.. automodule:: pyrenew.basic
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/convolve.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Convolution Utility Module
==========================

.. automodule:: pyrenew.convolve
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/distutil.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Distribution Utility Module
===========================

.. automodule:: pyrenew.distutil
:members:
:undoc-members:
:show-inheritance:
15 changes: 15 additions & 0 deletions docs/source/msei_reference/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
MSEI Reference
==============

.. toctree::
:maxdepth: 4

observation
regression
distutil
convolve
infection
basic
transform
process
math
7 changes: 7 additions & 0 deletions docs/source/msei_reference/infection.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Infection Module
================

.. automodule:: pyrenew.infection
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/math.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Math Utility Module
===================

.. automodule:: pyrenew.math
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/observation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Observation Module
==================

.. automodule:: pyrenew.observation
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/process.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Process Module
==============

.. automodule:: pyrenew.process
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/regression.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Regression Module
==================

.. automodule:: pyrenew.regression
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/msei_reference/transform.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Transform Utility Module
========================

.. automodule:: pyrenew.transform
:members:
:undoc-members:
:show-inheritance:

0 comments on commit 15a9327

Please sign in to comment.