Skip to content

Commit

Permalink
automatic docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogila committed Oct 18, 2024
1 parent fc13715 commit d20488e
Show file tree
Hide file tree
Showing 23 changed files with 6,615 additions and 411 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@

This Python package makes my life easier when analyzing INS, FTIR and Raman CSV data files, among others.

Check the latest documentation [here](https://pablogila.github.io/Maat/).

## Install

To install, clone the repository from [GitHub](https://github.com/pablogila/Maat/) and run:

```shell
pip install .
```
Expand Down
1 change: 1 addition & 0 deletions build_docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pdoc ./maat/ -o ./docs
7 changes: 7 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=./maat.html"/>
</head>
</html>
282 changes: 282 additions & 0 deletions docs/maat.html

Large diffs are not rendered by default.

2,173 changes: 2,173 additions & 0 deletions docs/maat/classes.html

Large diffs are not rendered by default.

1,025 changes: 1,025 additions & 0 deletions docs/maat/constants.html

Large diffs are not rendered by default.

770 changes: 770 additions & 0 deletions docs/maat/deuteration.html

Large diffs are not rendered by default.

581 changes: 581 additions & 0 deletions docs/maat/fit.html

Large diffs are not rendered by default.

418 changes: 418 additions & 0 deletions docs/maat/material.html

Large diffs are not rendered by default.

476 changes: 476 additions & 0 deletions docs/maat/normalize.html

Large diffs are not rendered by default.

511 changes: 511 additions & 0 deletions docs/maat/plot.html

Large diffs are not rendered by default.

284 changes: 284 additions & 0 deletions docs/maat/utils.html

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions docs/search.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions maat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
.. include:: ../README.md
'''


from .constants import *
from .classes import *
from .utils import *
Expand Down
10 changes: 5 additions & 5 deletions maat/classes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
'''
This module contains the core classes and their functions.
'''


from .constants import *
import numpy as np
import matplotlib.pyplot as plt
Expand All @@ -6,11 +11,6 @@
import os


'''
This module contains the core classes and their functions.
'''


class ScaleRange:
'''
If `plotting.normalize=True`, the data will be normalized inside the specified range.
Expand Down
8 changes: 4 additions & 4 deletions maat/constants.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import numpy as np


'''
This module contains constants and conversion factors.
'''


version = 'v2.1.0'
import numpy as np


version = 'v2.1.1'


#############################
Expand Down
Loading

0 comments on commit d20488e

Please sign in to comment.