pyreactlab-core 0.1.3__tar.gz → 0.1.4__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.
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/PKG-INFO +3 -3
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyproject.toml +74 -74
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/configs/info.py +1 -1
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core.egg-info/PKG-INFO +3 -3
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core.egg-info/requires.txt +2 -2
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/LICENSE +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/README.md +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/__init__.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/app.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/configs/__init__.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/configs/constants.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/core/__init__.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/core/chem_react.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/docs/__init__.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/docs/chem_balance.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/docs/chem_utils.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/models/__init__.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/models/reaction.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/utils/__init__.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core/utils/tools.py +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core.egg-info/SOURCES.txt +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core.egg-info/dependency_links.txt +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core.egg-info/top_level.txt +0 -0
- {pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyreactlab-core
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
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
|
|
@@ -18,8 +18,8 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
18
18
|
Requires-Python: >=3.11
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: scipy>=1.17.1
|
|
22
|
+
Requires-Dist: numpy>=2.4.3
|
|
23
23
|
Requires-Dist: pydantic>=2.12.5
|
|
24
24
|
Requires-Dist: pydantic-settings>=2.12.0
|
|
25
25
|
Requires-Dist: rich>=14.2.0
|
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "pyreactlab-core"
|
|
7
|
-
version = "0.1.
|
|
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
|
-
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.11"
|
|
11
|
-
license = "Apache-2.0"
|
|
12
|
-
license-files = ["LICENSE"]
|
|
13
|
-
authors = [
|
|
14
|
-
{name = "Sina Gilassi", email = "sina.gilassi@gmail.com"}
|
|
15
|
-
]
|
|
16
|
-
keywords = [
|
|
17
|
-
"chemical-engineering",
|
|
18
|
-
"chemical-reactions",
|
|
19
|
-
"reaction-representation",
|
|
20
|
-
"reaction-stoichiometry",
|
|
21
|
-
"reaction-analysis",
|
|
22
|
-
]
|
|
23
|
-
classifiers = [
|
|
24
|
-
"Development Status :: 1 - Planning",
|
|
25
|
-
"Intended Audience :: Education",
|
|
26
|
-
"Programming Language :: Python :: 3.11",
|
|
27
|
-
"Operating System :: Unix",
|
|
28
|
-
"Operating System :: MacOS :: MacOS X",
|
|
29
|
-
"Operating System :: Microsoft :: Windows",
|
|
30
|
-
]
|
|
31
|
-
dependencies = [
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"pydantic>=2.12.5",
|
|
35
|
-
"pydantic-settings>=2.12.0",
|
|
36
|
-
"rich>=14.2.0",
|
|
37
|
-
"pythermodb-settings",
|
|
38
|
-
]
|
|
39
|
-
|
|
40
|
-
[project.urls]
|
|
41
|
-
Homepage = "https://github.com/sinagilassi/PyReactLab-Core"
|
|
42
|
-
Documentation = "https://pyreactlab-core.readthedocs.io/en/latest/"
|
|
43
|
-
Source = "https://github.com/sinagilassi/PyReactLab-Core"
|
|
44
|
-
Tracker = "https://github.com/sinagilassi/PyReactLab-Core/issues"
|
|
45
|
-
|
|
46
|
-
[tool.setuptools]
|
|
47
|
-
include-package-data = true
|
|
48
|
-
|
|
49
|
-
[tool.setuptools.packages.find]
|
|
50
|
-
where = ["."]
|
|
51
|
-
include = ["pyreactlab_core*"]
|
|
52
|
-
exclude = [
|
|
53
|
-
"tests",
|
|
54
|
-
"tests.*",
|
|
55
|
-
"examples",
|
|
56
|
-
"examples.*",
|
|
57
|
-
"notebooks",
|
|
58
|
-
"notebooks.*",
|
|
59
|
-
"statics",
|
|
60
|
-
"statics.*",
|
|
61
|
-
"private",
|
|
62
|
-
"private.*",
|
|
63
|
-
"app",
|
|
64
|
-
"app.*"
|
|
65
|
-
]
|
|
66
|
-
|
|
67
|
-
[tool.setuptools.package-data]
|
|
68
|
-
pyreactlab_core = [
|
|
69
|
-
"config/*.yml",
|
|
70
|
-
"data/*.csv",
|
|
71
|
-
"templates/*.html",
|
|
72
|
-
"static/*",
|
|
73
|
-
"static/**/*"
|
|
74
|
-
]
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pyreactlab-core"
|
|
7
|
+
version = "0.1.4"
|
|
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
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "Sina Gilassi", email = "sina.gilassi@gmail.com"}
|
|
15
|
+
]
|
|
16
|
+
keywords = [
|
|
17
|
+
"chemical-engineering",
|
|
18
|
+
"chemical-reactions",
|
|
19
|
+
"reaction-representation",
|
|
20
|
+
"reaction-stoichiometry",
|
|
21
|
+
"reaction-analysis",
|
|
22
|
+
]
|
|
23
|
+
classifiers = [
|
|
24
|
+
"Development Status :: 1 - Planning",
|
|
25
|
+
"Intended Audience :: Education",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Operating System :: Unix",
|
|
28
|
+
"Operating System :: MacOS :: MacOS X",
|
|
29
|
+
"Operating System :: Microsoft :: Windows",
|
|
30
|
+
]
|
|
31
|
+
dependencies = [
|
|
32
|
+
"scipy>=1.17.1",
|
|
33
|
+
"numpy>=2.4.3",
|
|
34
|
+
"pydantic>=2.12.5",
|
|
35
|
+
"pydantic-settings>=2.12.0",
|
|
36
|
+
"rich>=14.2.0",
|
|
37
|
+
"pythermodb-settings",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
Homepage = "https://github.com/sinagilassi/PyReactLab-Core"
|
|
42
|
+
Documentation = "https://pyreactlab-core.readthedocs.io/en/latest/"
|
|
43
|
+
Source = "https://github.com/sinagilassi/PyReactLab-Core"
|
|
44
|
+
Tracker = "https://github.com/sinagilassi/PyReactLab-Core/issues"
|
|
45
|
+
|
|
46
|
+
[tool.setuptools]
|
|
47
|
+
include-package-data = true
|
|
48
|
+
|
|
49
|
+
[tool.setuptools.packages.find]
|
|
50
|
+
where = ["."]
|
|
51
|
+
include = ["pyreactlab_core*"]
|
|
52
|
+
exclude = [
|
|
53
|
+
"tests",
|
|
54
|
+
"tests.*",
|
|
55
|
+
"examples",
|
|
56
|
+
"examples.*",
|
|
57
|
+
"notebooks",
|
|
58
|
+
"notebooks.*",
|
|
59
|
+
"statics",
|
|
60
|
+
"statics.*",
|
|
61
|
+
"private",
|
|
62
|
+
"private.*",
|
|
63
|
+
"app",
|
|
64
|
+
"app.*"
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[tool.setuptools.package-data]
|
|
68
|
+
pyreactlab_core = [
|
|
69
|
+
"config/*.yml",
|
|
70
|
+
"data/*.csv",
|
|
71
|
+
"templates/*.html",
|
|
72
|
+
"static/*",
|
|
73
|
+
"static/**/*"
|
|
74
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyreactlab-core
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
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
|
|
@@ -18,8 +18,8 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
18
18
|
Requires-Python: >=3.11
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: scipy>=1.17.1
|
|
22
|
+
Requires-Dist: numpy>=2.4.3
|
|
23
23
|
Requires-Dist: pydantic>=2.12.5
|
|
24
24
|
Requires-Dist: pydantic-settings>=2.12.0
|
|
25
25
|
Requires-Dist: rich>=14.2.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyreactlab_core-0.1.3 → pyreactlab_core-0.1.4}/pyreactlab_core.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|