process-bigraph 0.0.41__tar.gz → 0.0.42__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.41/process_bigraph.egg-info → process-bigraph-0.0.42}/PKG-INFO +2 -2
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/README.md +1 -1
- process-bigraph-0.0.42/process_bigraph/composite.py +1694 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/emitter.py +94 -198
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/tests.py +119 -1
- {process-bigraph-0.0.41 → process-bigraph-0.0.42/process_bigraph.egg-info}/PKG-INFO +2 -2
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/pyproject.toml +3 -2
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/setup.py +1 -1
- process-bigraph-0.0.41/process_bigraph/composite.py +0 -1320
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/.github/workflows/notebook_to_html.yml +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/.github/workflows/pytest.yml +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/.gitignore +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/AUTHORS.md +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/CLA.md +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/CODE_OF_CONDUCT.md +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/CONTRIBUTING.md +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/LICENSE +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/doc/_static/process-bigraph.png +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/notebooks/process-bigraphs.ipynb +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/notebooks/visualize_processes.ipynb +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/__init__.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/experiments/__init__.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/experiments/minimal_gillespie.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/process_types.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/processes/__init__.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/processes/growth_division.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/processes/parameter_scan.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph/protocols.py +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph.egg-info/SOURCES.txt +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph.egg-info/dependency_links.txt +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph.egg-info/requires.txt +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/process_bigraph.egg-info/top_level.txt +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/pytest.ini +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/release.sh +0 -0
- {process-bigraph-0.0.41 → process-bigraph-0.0.42}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: process-bigraph
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.42
|
|
4
4
|
Home-page: https://github.com/vivarium-collective/process-bigraph
|
|
5
5
|
Author: Ryan Spangler, Eran Agmon
|
|
6
6
|
Author-email: ryan.spangler@gmail.com, agmon.eran@gmail.com
|
|
@@ -69,4 +69,4 @@ diagraph of a whole-cell E. coli model.
|
|
|
69
69
|
|
|
70
70
|
## License
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
process-bigraph is open-source software released under the [Apache 2 License](https://github.com/vivarium-collective/process-bigraph/blob/main/LICENSE).
|
|
@@ -46,4 +46,4 @@ diagraph of a whole-cell E. coli model.
|
|
|
46
46
|
|
|
47
47
|
## License
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
process-bigraph is open-source software released under the [Apache 2 License](https://github.com/vivarium-collective/process-bigraph/blob/main/LICENSE).
|