pathsim-chem 0.0.2__py3-none-any.whl

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.
@@ -0,0 +1,13 @@
1
+ """
2
+ PathSim-Chem: Chemical Engineering Blocks for PathSim
3
+
4
+ A toolbox providing specialized blocks for chemical engineering simulations
5
+ in the PathSim framework.
6
+ """
7
+
8
+ try:
9
+ from ._version import version as __version__
10
+ except ImportError:
11
+ __version__ = "unknown"
12
+
13
+ __all__ = ["__version__"]
@@ -0,0 +1,34 @@
1
+ # file generated by setuptools-scm
2
+ # don't change, don't track in version control
3
+
4
+ __all__ = [
5
+ "__version__",
6
+ "__version_tuple__",
7
+ "version",
8
+ "version_tuple",
9
+ "__commit_id__",
10
+ "commit_id",
11
+ ]
12
+
13
+ TYPE_CHECKING = False
14
+ if TYPE_CHECKING:
15
+ from typing import Tuple
16
+ from typing import Union
17
+
18
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
19
+ COMMIT_ID = Union[str, None]
20
+ else:
21
+ VERSION_TUPLE = object
22
+ COMMIT_ID = object
23
+
24
+ version: str
25
+ __version__: str
26
+ __version_tuple__: VERSION_TUPLE
27
+ version_tuple: VERSION_TUPLE
28
+ commit_id: COMMIT_ID
29
+ __commit_id__: COMMIT_ID
30
+
31
+ __version__ = version = '0.0.2'
32
+ __version_tuple__ = version_tuple = (0, 0, 2)
33
+
34
+ __commit_id__ = commit_id = None
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: pathsim-chem
3
+ Version: 0.0.2
4
+ Summary: Chemical Engineering Blocks for PathSim
5
+ Author: PathSim Contributors
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/pathsim/pathsim-chem
8
+ Project-URL: Documentation, https://pathsim-chem.readthedocs.io
9
+ Project-URL: Repository, https://github.com/pathsim/pathsim-chem
10
+ Project-URL: Issues, https://github.com/pathsim/pathsim-chem/issues
11
+ Keywords: simulation,chemical engineering,process modeling
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Scientific/Engineering
22
+ Requires-Python: >=3.9
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: pathsim
26
+ Requires-Dist: numpy<2,>=1.15
27
+ Requires-Dist: scipy>=1.2
28
+ Provides-Extra: test
29
+ Requires-Dist: pytest>=7.0; extra == "test"
30
+ Requires-Dist: pytest-cov>=4.0; extra == "test"
31
+ Provides-Extra: docs
32
+ Requires-Dist: sphinx>=7.0; extra == "docs"
33
+ Requires-Dist: furo; extra == "docs"
34
+ Requires-Dist: myst-parser; extra == "docs"
35
+ Requires-Dist: sphinx-copybutton; extra == "docs"
36
+ Requires-Dist: sphinx-design; extra == "docs"
37
+ Dynamic: license-file
38
+
39
+ # PathSim-Chem
40
+
41
+ Chemical Engineering Blocks for PathSim.
42
+
@@ -0,0 +1,7 @@
1
+ pathsim_chem/__init__.py,sha256=VXP8S5gSiDPf3d_76SQA59v-FWONvsRilAJ3UVL5kEo,295
2
+ pathsim_chem/_version.py,sha256=huLsL1iGeXWQKZ8bjwDdIWC7JOkj3wnzBh-HFMZl1PY,704
3
+ pathsim_chem-0.0.2.dist-info/licenses/LICENSE,sha256=DWjTGX2hLZpbN3i93RTs1I-Re_5M0hzlVim9eZHR-VQ,1064
4
+ pathsim_chem-0.0.2.dist-info/METADATA,sha256=UOXNidMZ9XgNIl0VXwbdlWZ3xC6LJ7p1nR6gYHxDePY,1557
5
+ pathsim_chem-0.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ pathsim_chem-0.0.2.dist-info/top_level.txt,sha256=uthLlDmiQbGUOMs0UfpE7gwiKa2iIvJ7l6gJcH1CECo,13
7
+ pathsim_chem-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 PathSim
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ pathsim_chem