pyreactlab-core 0.1.7__tar.gz → 0.1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/PKG-INFO +1 -1
  2. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyproject.toml +1 -1
  3. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/configs/info.py +1 -1
  4. pyreactlab_core-0.1.8/pyreactlab_core/core/__init__.py +17 -0
  5. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core.egg-info/PKG-INFO +1 -1
  6. pyreactlab_core-0.1.7/pyreactlab_core/core/__init__.py +0 -1
  7. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/LICENSE +0 -0
  8. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/README.md +0 -0
  9. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/__init__.py +0 -0
  10. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/app.py +0 -0
  11. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/configs/__init__.py +0 -0
  12. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/configs/constants.py +0 -0
  13. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/core/chem_react.py +0 -0
  14. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/docs/__init__.py +0 -0
  15. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/docs/chem_balance.py +0 -0
  16. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/docs/chem_utils.py +0 -0
  17. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/models/__init__.py +0 -0
  18. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/models/reaction.py +0 -0
  19. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/utils/__init__.py +0 -0
  20. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/utils/component_tools.py +0 -0
  21. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core/utils/tools.py +0 -0
  22. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core.egg-info/SOURCES.txt +0 -0
  23. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core.egg-info/dependency_links.txt +0 -0
  24. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core.egg-info/requires.txt +0 -0
  25. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/pyreactlab_core.egg-info/top_level.txt +0 -0
  26. {pyreactlab_core-0.1.7 → pyreactlab_core-0.1.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyreactlab-core
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: pyreactlab-core is the core foundation of the PyReactLab ecosystem, offering shared data structures and algorithms for chemical reaction representation, stoichiometry, and reaction analysis.
5
5
  Author-email: Sina Gilassi <sina.gilassi@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyreactlab-core"
7
- version = "0.1.7"
7
+ version = "0.1.8"
8
8
  description = "pyreactlab-core is the core foundation of the PyReactLab ecosystem, offering shared data structures and algorithms for chemical reaction representation, stoichiometry, and reaction analysis."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,5 +1,5 @@
1
1
  # version
2
- __version__ = "0.1.7"
2
+ __version__ = "0.1.8"
3
3
  # author
4
4
  __author__ = "Sina Gilassi"
5
5
  # email
@@ -0,0 +1,17 @@
1
+
2
+ # NOTE: chem react
3
+ from .chem_react import (
4
+ ReactionMode,
5
+ PhaseRule,
6
+ Reactant,
7
+ Product,
8
+ ChemReact
9
+ )
10
+
11
+ __all__ = [
12
+ "ReactionMode",
13
+ "PhaseRule",
14
+ "Reactant",
15
+ "Product",
16
+ "ChemReact"
17
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyreactlab-core
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: pyreactlab-core is the core foundation of the PyReactLab ecosystem, offering shared data structures and algorithms for chemical reaction representation, stoichiometry, and reaction analysis.
5
5
  Author-email: Sina Gilassi <sina.gilassi@gmail.com>
6
6
  License-Expression: Apache-2.0
File without changes