process-bigraph 1.1.7__tar.gz → 1.2.2__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-1.1.7/process_bigraph.egg-info → process_bigraph-1.2.2}/PKG-INFO +2 -6
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/composite.py +385 -175
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/emitter.py +34 -5
- {process_bigraph-1.1.7 → process_bigraph-1.2.2/process_bigraph.egg-info}/PKG-INFO +2 -6
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph.egg-info/SOURCES.txt +0 -11
- process_bigraph-1.2.2/process_bigraph.egg-info/requires.txt +6 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/pyproject.toml +13 -6
- process_bigraph-1.1.7/.github/workflows/notebook_to_html.yml +0 -43
- process_bigraph-1.1.7/.github/workflows/pytest.yml +0 -29
- process_bigraph-1.1.7/.gitignore +0 -18
- process_bigraph-1.1.7/CLA.md +0 -113
- process_bigraph-1.1.7/CODE_OF_CONDUCT.md +0 -137
- process_bigraph-1.1.7/CONTRIBUTING.md +0 -44
- process_bigraph-1.1.7/doc/_static/process-bigraph.png +0 -0
- process_bigraph-1.1.7/notebooks/process-bigraphs.ipynb +0 -739
- process_bigraph-1.1.7/notebooks/visualize_processes.ipynb +0 -237
- process_bigraph-1.1.7/process_bigraph.egg-info/requires.txt +0 -10
- process_bigraph-1.1.7/pytest.ini +0 -4
- process_bigraph-1.1.7/release.sh +0 -41
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/AUTHORS.md +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/LICENSE +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/README.md +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/__init__.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/bundle.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/experiments/__init__.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/experiments/minimal_gillespie.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/nextflow.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/plumbing.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/__init__.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/dynamic_structure.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/examples.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/growth_division.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/math_expression.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/parameter_scan.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/processes/reaction.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/protocols/__init__.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/protocols/parallel.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/protocols/rest.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/protocols/socket.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/run.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/run_step.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/types/__init__.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/types/process.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph/units.py +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph.egg-info/dependency_links.txt +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/process_bigraph.egg-info/top_level.txt +0 -0
- {process_bigraph-1.1.7 → process_bigraph-1.2.2}/setup.cfg +0 -0
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: process-bigraph
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: protocol and execution for compositional systems biology
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
License-File: AUTHORS.md
|
|
9
|
-
Requires-Dist: bigraph-schema
|
|
10
|
-
Requires-Dist: ipdb>=0.13.13
|
|
9
|
+
Requires-Dist: bigraph-schema>=1.2.3
|
|
11
10
|
Requires-Dist: matplotlib
|
|
12
11
|
Requires-Dist: pint>=0.24.4
|
|
13
12
|
Requires-Dist: scipy>=1.8
|
|
14
13
|
Requires-Dist: pandas
|
|
15
14
|
Requires-Dist: sympy
|
|
16
|
-
Requires-Dist: ipykernel
|
|
17
|
-
Requires-Dist: jupyter
|
|
18
|
-
Requires-Dist: notebook
|
|
19
15
|
Dynamic: license-file
|
|
20
16
|
|
|
21
17
|
# Process-Bigraph
|