-
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.
* Use Rich library in the CLI * Improve reporting capabilities Co-authored-by: Felipe S. S. Schneider <[email protected]>
- Loading branch information
1 parent
5095fcb
commit 8733d93
Showing
8 changed files
with
483 additions
and
471 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
cclib==1.6.3 | ||
cclib>=1.6.3 | ||
scipy>=1.4.0 | ||
matplotlib>=2.1.1 | ||
pytest>=5.2.1 | ||
rich>=9.2.0 | ||
thermo>=0.1.39 |
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 |
---|---|---|
|
@@ -8,13 +8,13 @@ | |
setup( | ||
name="overreact", | ||
version=open("VERSION").read().strip(), | ||
description="A Python package for constructing microkinetic models", | ||
description="Construct precise chemical microkinetic models from first principles", | ||
author="Felipe Silveira de Souza Schneider", | ||
author_email="[email protected]", | ||
url="https://github.com/schneiderfelipe/overreact", | ||
packages=find_packages(), | ||
entry_points={"console_scripts": ["overreact = overreact.cli:main"]}, | ||
install_requires=["cclib>=1.6.3", "scipy>=1.4.0"], | ||
extras_require={"thermo": ["thermo>=0.1.39"]}, | ||
tests_require=["pytest>=5.2.1"], | ||
extras_require={"cli": ["rich>=9.2.0"], "solvents": ["thermo>=0.1.39"],}, | ||
tests_require=["matplotlib>=2.1.1", "pytest>=5.2.1"], | ||
) |
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