Skip to content

Commit d51e1b0

Browse files
Update docs & README.md (#87)
* Move docs to https://geem-lab.github.io/overreact-docs/ * Update README.md
1 parent b697a0d commit d51e1b0

File tree

87 files changed

+128
-23307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+128
-23307
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,46 @@
44
name: build
55

66
on:
7-
push:
8-
branches: [ main, dev ]
9-
pull_request:
10-
branches: [ main, dev ]
7+
push:
8+
branches: [main, dev]
9+
pull_request:
10+
branches: [main, dev]
1111

1212
jobs:
13-
build:
14-
strategy:
15-
matrix:
16-
os:
17-
- ubuntu-latest
18-
# - windows-latest
19-
# - macos-latest
20-
python-version: [ 3.6, '3.x' ]
13+
build:
14+
strategy:
15+
matrix:
16+
os:
17+
- ubuntu-latest
18+
# - windows-latest
19+
# - macos-latest
20+
python-version: [3.6, "3.x"]
2121

22-
runs-on: ${{ matrix.os }}
22+
runs-on: ${{ matrix.os }}
2323

24-
steps:
25-
- uses: actions/checkout@v2
26-
with:
27-
token: ${{ secrets.INTEGRATIVE_KEY }}
28-
submodules: true
29-
- name: Set up Python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v1
31-
with:
32-
python-version: ${{ matrix.python-version }}
33-
- name: Install package and dependencies
34-
run: |
35-
python -m pip install --upgrade pip
36-
pip install .
37-
pip install -r requirements.txt
38-
- name: Lint with flake8
39-
run: |
40-
pip install flake8
41-
# stop the build if there are Python syntax errors or undefined names
42-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
43-
# exit-zero treats all errors as warnings.
44-
flake8 . --count --exit-zero --statistics
45-
- name: Test with pytest and coverage
46-
run: |
47-
pip install pytest coverage
48-
coverage run -m pytest
49-
coverage report
24+
steps:
25+
- uses: actions/checkout@v2
26+
with:
27+
token: ${{ secrets.INTEGRATIVE_KEY }}
28+
submodules: true
29+
- name: Set up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v1
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
- name: Install package and dependencies
34+
run: |
35+
python -m pip install --upgrade pip
36+
pip install .
37+
pip install -r requirements.txt
38+
- name: Lint with flake8
39+
run: |
40+
pip install flake8
41+
# stop the build if there are Python syntax errors or undefined names
42+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
43+
# exit-zero treats all errors as warnings.
44+
flake8 . --count --exit-zero --statistics
45+
- name: Test with pytest and coverage
46+
run: |
47+
pip install pytest coverage
48+
coverage run -m pytest
49+
coverage report

AUTHORS.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.

FAQ.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

INSTALL.rst

Lines changed: 0 additions & 28 deletions
This file was deleted.

README.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Welcome to **overreact**!
2+
3+
<div style="text-align:center;">
4+
5+
![overreact](https://raw.githubusercontent.com/geem-lab/overreact-docs/master/logo.png)
6+
7+
</div>
8+
9+
**overreact** is a _library_ and a _command-line tool_ for creating and
10+
analyzing [microkinetic models](https://geem-lab.github.io/overreact-docs/#microkinetic).
11+
Data is parsed directly from computational chemistry output files thanks to
12+
[`cclib`](https://cclib.github.io/) (see the [list of supported programs](https://cclib.github.io/#summary)).
13+
14+
## Installation
15+
16+
**overreact** is a Python package, so you can easily install it with `pip`.
17+
See the [installation instructions](https://geem-lab.github.io/overreact-docs/install.html).
18+
19+
## License
20+
21+
**overreact** is open-source, released under the permissive **MIT license**.
22+
See [our LICENSE file](https://github.com/geem-lab/overreact/blob/main/LICENSE).
23+
24+
## Citing **overreact**
25+
26+
If you use **overreact** in your research, please cite:
27+
28+
> F. S. S. Schneider and G. F. Caramori. _**overreact**: a tool for creating and analyzing microkinetic models built from computational chemistry data_. **2021**.
29+
> Available at: <https://github.com/geem-lab/overreact>.
30+
31+
Here's the reference in [BibTeX](http://www.bibtex.org/) format:
32+
33+
<!-- @article{overreact,
34+
title = \textbf{overreact}: a tool for creating and analyzing microkinetic models built from computational chemistry data},
35+
author = {Schneider, F. S. S. and Caramori, G. F.},
36+
journal={J. Chem. Phys.},
37+
volume={155},
38+
number={1},
39+
pages={0},
40+
year = {2021},
41+
publisher={American Chemical Society (ACS)},
42+
doi={10.1063/1.5058983},
43+
url={https://doi.org/10.1063/1.5058983}
44+
} -->
45+
46+
```bibtex
47+
@misc{overreact2021,
48+
title = {
49+
\textbf{overreact}: a tool for creating and analyzing microkinetic models
50+
built from computational chemistry data, ver. 1.0
51+
},
52+
author = {Schneider, F. S. S. and Caramori, G. F.},
53+
year = 2021,
54+
howpublished = {\url{https://github.com/geem-lab/overreact}}
55+
}
56+
```
57+
58+
A paper describing **overreact** is currently being prepared.
59+
When it is published, the above BibTeX entry will be updated.
60+
61+
## Funding
62+
63+
This project was developed at the [GEEM lab](https://geem-ufsc.org/) ([Federal University of Santa
64+
Catarina](https://en.ufsc.br/), Brazil), and was partially funded by the
65+
[Brazilian National Council for Scientific and Technological Development (CNPq)](https://cnpq.br/),
66+
grant number 140485/2017-1.

README.rst

Lines changed: 0 additions & 27 deletions
This file was deleted.

data

Submodule data updated from f4c8d2d to f778724

docs/_sources/authors.rst.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/_sources/changelog.rst.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)