-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added functionality for pressure model for the species. 06/26/2024
This completes the built of multiple species convection model functionality.
- Loading branch information
Showing
9 changed files
with
31 additions
and
7 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 |
---|---|---|
|
@@ -21,9 +21,9 @@ | |
__copyright__ = "Copyright 2024, The COMETS Consortium" | ||
__credits__ = ["Djordje Bajic", "Jean Vila", "Jeremy Chacon", "Ilija Dukovski"] | ||
__license__ = "MIT" | ||
__version__ = "0.5.0" | ||
__comets_compatibility__ = "2.12.0" # version of comets this was tested with (except signaling) | ||
__comets_compatibility_signaling__ = "2.12.0" # version signaling was tested with | ||
__version__ = "0.5.1" | ||
__comets_compatibility__ = "2.12.2" # version of comets this was tested with (except signaling) | ||
__comets_compatibility_signaling__ = "2.12.2" # version signaling was tested with | ||
|
||
__maintainer__ = "Djordje Bajic" | ||
__email__ = "[email protected]" | ||
|
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,9 +1,9 @@ | ||
Metadata-Version: 2.1 | ||
Name: cometspy | ||
Version: 0.5.0 | ||
Version: 0.5.1 | ||
Summary: The Python interface to COMETS | ||
Home-page: https://github.com/segrelab/cometspy | ||
Download-URL: https://github.com/segrelab/cometspy/archive/v0.5.0.tar.gz | ||
Download-URL: https://github.com/segrelab/cometspy/archive/v0.5.1.tar.gz | ||
Author: The COMETSPy Core Team | ||
Author-email: [email protected] | ||
License: GPL | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+50.4 KB
dist/cometspy-0.5.0-py3-none-any.whl → dist/cometspy-0.5.1-py3-none-any.whl
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -4,13 +4,13 @@ | |
setup( | ||
name='cometspy', | ||
packages=['cometspy'], | ||
version='0.5.0', | ||
version='0.5.1', | ||
license='GPL', | ||
description='The Python interface to COMETS', | ||
author='The COMETSPy Core Team', | ||
author_email='[email protected]', | ||
url='https://github.com/segrelab/cometspy', | ||
download_url='https://github.com/segrelab/cometspy/archive/v0.5.0.tar.gz', # New releases here!! | ||
download_url='https://github.com/segrelab/cometspy/archive/v0.5.1.tar.gz', # New releases here!! | ||
keywords=['metabolism', 'dynamic', 'flux', 'balance', 'analysis', 'spatial', 'evolution'], | ||
install_requires=[ | ||
# I get to this in a second | ||
|