Skip to content

Commit

Permalink
Merge pull request #20 from OMalenfantThuot/doc
Browse files Browse the repository at this point in the history
Doc
  • Loading branch information
OMalenfantThuot committed Oct 24, 2019
2 parents 75316b1 + a837f8f commit e944b97
Show file tree
Hide file tree
Showing 93 changed files with 20,499 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ML\_Calc\_Driver
# Machine Learning Calculations Driver (ML\_Calc\_Driver)

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
[![Build Status](https://travis-ci.org/OMalenfantThuot/ML_Calc_Driver.svg?branch=master&kill_cache=1)](https://travis-ci.org/OMalenfantThuot/ML_Calc_Driver)
Expand All @@ -18,7 +18,7 @@ which served as a foundation for this work. Some classes have been directly adap

## Documentation

No documentation for the moment.
The documentation is available [here](https://omalenfantthuot.github.io/ML_Calc_Driver/).

## Installation

Expand Down
4 changes: 4 additions & 0 deletions docs/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: b2854b42d84965a2e3ec8eeeaf37d586
tags: 645f666f9bcd5a90fca523b33c5a78b7
Empty file added docs/.nojekyll
Empty file.
24 changes: 24 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = source
BUILDDIR = build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

github:
@make html
@cp -a build/html/. ../docs
11 changes: 11 additions & 0 deletions docs/_sources/base.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Base Module
-----------

.. automodule:: mlcalcdriver.base

.. toctree::
:maxdepth: 1
:caption: Related classes

posinp
job
4 changes: 4 additions & 0 deletions docs/_sources/calculators.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Calculators
-----------

.. automodule:: mlcalcdriver.calculators
3 changes: 3 additions & 0 deletions docs/_sources/globals.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Globals
-------

27 changes: 27 additions & 0 deletions docs/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.. ML_Calc_Driver documentation master file, created by
sphinx-quickstart on Wed Oct 23 15:50:30 2019.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to ML_Calc_Driver's documentation!
==========================================

.. toctree::
:maxdepth: 2
:caption: Modules:

base
calculators
globals
interfaces
workflows

.. mdinclude:: ../../README.md


Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
4 changes: 4 additions & 0 deletions docs/_sources/interfaces.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Interfaces
----------

.. automodule:: mlcalcdriver.interfaces
6 changes: 6 additions & 0 deletions docs/_sources/job.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Job Object
----------

.. autoclass:: mlcalcdriver.base.Job

.. autoclass:: mlcalcdriver.base.JobResults
6 changes: 6 additions & 0 deletions docs/_sources/posinp.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Posinp and Atom Objects
-----------------------

.. autoclass:: mlcalcdriver.base.Posinp

.. autoclass:: mlcalcdriver.base.Atom
4 changes: 4 additions & 0 deletions docs/_sources/workflows.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Workflows
---------

.. automodule:: mlcalcdriver.workflows
Loading

0 comments on commit e944b97

Please sign in to comment.