process-bigraph 0.0.42__tar.gz → 0.0.44__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.
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/.gitignore +3 -1
- {process-bigraph-0.0.42/process_bigraph.egg-info → process_bigraph-0.0.44}/PKG-INFO +11 -18
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/__init__.py +3 -2
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/composite.py +241 -384
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/emitter.py +2 -3
- process_bigraph-0.0.44/process_bigraph/process_types.py +473 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/processes/growth_division.py +5 -3
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/tests.py +274 -16
- process_bigraph-0.0.44/process_bigraph/units.py +25 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44/process_bigraph.egg-info}/PKG-INFO +11 -18
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph.egg-info/SOURCES.txt +1 -1
- process_bigraph-0.0.44/process_bigraph.egg-info/requires.txt +6 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/pyproject.toml +7 -4
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/release.sh +18 -20
- process_bigraph-0.0.44/setup.py +10 -0
- process-bigraph-0.0.42/process_bigraph/process_types.py +0 -382
- process-bigraph-0.0.42/process_bigraph/protocols.py +0 -27
- process-bigraph-0.0.42/process_bigraph.egg-info/requires.txt +0 -3
- process-bigraph-0.0.42/setup.py +0 -57
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/.github/workflows/notebook_to_html.yml +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/.github/workflows/pytest.yml +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/AUTHORS.md +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/CLA.md +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/CODE_OF_CONDUCT.md +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/CONTRIBUTING.md +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/LICENSE +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/README.md +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/doc/_static/process-bigraph.png +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/notebooks/process-bigraphs.ipynb +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/notebooks/visualize_processes.ipynb +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/experiments/__init__.py +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/experiments/minimal_gillespie.py +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/processes/__init__.py +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/processes/parameter_scan.py +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph.egg-info/dependency_links.txt +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph.egg-info/top_level.txt +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/pytest.ini +0 -0
- {process-bigraph-0.0.42 → process_bigraph-0.0.44}/setup.cfg +0 -0
|
@@ -1,25 +1,18 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: process-bigraph
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Author-email: ryan.spangler@gmail.com, agmon.eran@gmail.com
|
|
7
|
-
Classifier: Development Status :: 3 - Alpha
|
|
8
|
-
Classifier: Intended Audience :: Developers
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Classifier: Programming Language :: Python
|
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
-
Requires-Python: >=3.6
|
|
3
|
+
Version: 0.0.44
|
|
4
|
+
Summary: protocol and execution for compositional systems biology
|
|
5
|
+
Requires-Python: >=3.11
|
|
20
6
|
Description-Content-Type: text/markdown
|
|
21
7
|
License-File: LICENSE
|
|
22
8
|
License-File: AUTHORS.md
|
|
9
|
+
Requires-Dist: bigraph-schema
|
|
10
|
+
Requires-Dist: docker>=7.1.0
|
|
11
|
+
Requires-Dist: ipdb>=0.13.13
|
|
12
|
+
Requires-Dist: matplotlib
|
|
13
|
+
Requires-Dist: pint>=0.24.4
|
|
14
|
+
Requires-Dist: pytest
|
|
15
|
+
Dynamic: license-file
|
|
23
16
|
|
|
24
17
|
# Process-Bigraph
|
|
25
18
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import pprint
|
|
2
2
|
from bigraph_schema.registry import deep_merge, default
|
|
3
3
|
from process_bigraph.processes import register_processes
|
|
4
|
-
from process_bigraph.composite import Process, Step, Composite, interval_time_precision
|
|
4
|
+
from process_bigraph.composite import Process, Step, Composite, interval_time_precision
|
|
5
5
|
from process_bigraph.emitter import Emitter, gather_emitter_results, generate_emitter_state, BASE_EMITTERS
|
|
6
|
-
|
|
6
|
+
from process_bigraph.process_types import ProcessTypes
|
|
7
|
+
from process_bigraph.package.discover import discover_packages
|
|
7
8
|
|
|
8
9
|
pretty = pprint.PrettyPrinter(indent=2)
|
|
9
10
|
|