-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update roadmaps and projects Change some accepted symbols in reactions Improve docs and some functions private Employ energy corrections Do tests on heat capacity Add command-line interface Calculate free volume Create temporary ORCA parser Add utilities for handling Hessian matrices Create high level API
- Loading branch information
1 parent
bc05eb3
commit abb2417
Showing
510 changed files
with
2,254,362 additions
and
25,641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[run] | ||
include = overreact/* | ||
[report] | ||
sort = Miss | ||
fail_under = 90 | ||
show_missing = True | ||
skip_covered = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
max-complexity = 22 | ||
max-doc-length = 88 | ||
enable-extensions = H106,H203,H204,H205,H210,H904 | ||
extend-ignore = E203 | ||
max-complexity = 17 | ||
doctests = True | ||
docstring-convention = numpy | ||
include-in-doctest = "*.rst" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Authors | ||
======= | ||
|
||
- Felipe S. S. Schneider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Changelog | ||
========= | ||
|
||
Version 1.0 | ||
----------- | ||
|
||
Released 2020-06-14. | ||
|
||
- First public preview release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Contributing | ||
============ | ||
|
||
Thank you for considering contributing to overreact! | ||
|
||
Support questions | ||
----------------- | ||
|
||
Please don't use the issue tracker for asking questions. | ||
Use the `mailing list <https://groups.google.com/d/forum/overreact>`__ for | ||
questions about your own code or the use of overreact. | ||
|
||
You can also send me an e-mail. I'm more than happy to answer any personal or | ||
in-depth questions about overreact. Feel free to email [email protected]. | ||
|
||
Reporting issues | ||
---------------- | ||
|
||
The easiest way to get help with the project is to `open an issue on Github | ||
<http://github.com/schneiderfelipe/overreact/issues>`__: | ||
|
||
- Describe what you expected to happen. | ||
- If possible, include a `minimal reproducible example <https://stackoverflow.com/help/minimal-reproducible-example>`__ | ||
to help us identify the issue. | ||
This also helps check that the issue is not with your own code. | ||
- Describe what actually happened. Include the full traceback if there was an | ||
exception. | ||
- List your Python version, as well as other packages. | ||
If possible, check if this issue is not already fixed in the repository. | ||
|
||
Submitting patches | ||
------------------ | ||
|
||
- Use `Black <https://black.readthedocs.io/>`__ to autoformat your code. | ||
- Use `Numpydoc docstrings <https://numpydoc.readthedocs.io/en/latest/format.html>`__ | ||
to document your code. | ||
- Include tests if your patch is supposed to solve a bug, and explain clearly | ||
under which circumstances the bug happens. | ||
Make sure the test fails without your patch. | ||
- Include a string like “Fixes #123” in your commit message (where 123 is the | ||
issue you fixed). | ||
See `Closing issues using keywords <https://help.github.com/articles/creating-a-pull-request/>`__. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Frequently asked questions | ||
========================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Installation | ||
============ | ||
|
||
overreact depends on: | ||
|
||
- `cclib <https://github.com/cclib/cclib/>`_ (parser for computational | ||
chemistry logfiles). | ||
- `SciPy <https://github.com/scipy/scipy/>`_ (numerical integration, | ||
optimization, unit conversion and others). | ||
|
||
The package, together with the above dependencies, can be installed from | ||
`PyPI <https://pypi.org/project/overreact/>`_, using | ||
`pip <https://pypi.org/project/pip/>`_, with the following command:: | ||
|
||
pip install overreact | ||
|
||
Optionally, extra functionality is provided by | ||
`thermo <https://github.com/CalebBell/thermo>`_:: | ||
|
||
pip install 'overreact[thermo]' | ||
|
||
This last line installs thermo as well. thermo is used to calculate the | ||
dynamic viscosity of solvents in the context of the | ||
:doc:`tutorials/collins-kimball` for diffusion-limited reactions. |
Oops, something went wrong.