Skip to content

Commit

Permalink
docs added
Browse files Browse the repository at this point in the history
  • Loading branch information
mpecchi committed May 12, 2024
1 parent 0c013ad commit 4acc9ee
Show file tree
Hide file tree
Showing 8 changed files with 87 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,5 @@ $RECYCLE.BIN/

src/.DS_Store
.DS_Store
docs/make.bat
docs/Makefile
Binary file added docs/requirements.txt
Binary file not shown.
1 change: 1 addition & 0 deletions docs/source/README.md
37 changes: 37 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "hplc_data_analysis"
copyright = "2024, Matteo Pecchi"
author = "Matteo Pecchi"
release = "v2.0.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = [
"sphinx.ext.autodoc",
"sphinx_autodoc_typehints",
"sphinx.ext.viewcode",
"myst_parser",
"sphinx.ext.napoleon",
]


exclude_patterns = []

templates_path = ["_templates"]


# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "sphinx_rtd_theme"

html_static_path = ["_static"]
autoclass_content = "both"
7 changes: 7 additions & 0 deletions docs/source/fragmenter.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
hplc_data_analysis.fragmenter
====================================

.. automodule:: hplc_data_analysis.fragmenter
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/source/hplc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
hplc_data_analysis.hplc
====================================

.. automodule:: hplc_data_analysis.hplc
:members:
:undoc-members:
:show-inheritance:
26 changes: 26 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.. hplc_data_analysis documentation master file, created by
sphinx-quickstart on Sun May 12 17:59:27 2024.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to hplc_data_analysis's documentation!
==============================================

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

README.md

hplc

fragmenter

pubchem

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

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
7 changes: 7 additions & 0 deletions docs/source/pubchem.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
hplc_data_analysis.pubchem
====================================

.. automodule:: hplc_data_analysis.pubchem
:members:
:undoc-members:
:show-inheritance:

0 comments on commit 4acc9ee

Please sign in to comment.