process-bigraph 0.0.41__tar.gz → 0.0.43__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.
Files changed (40) hide show
  1. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/.gitignore +3 -1
  2. {process-bigraph-0.0.41/process_bigraph.egg-info → process_bigraph-0.0.43}/PKG-INFO +12 -19
  3. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/README.md +1 -1
  4. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/__init__.py +3 -2
  5. process_bigraph-0.0.43/process_bigraph/composite.py +1551 -0
  6. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/emitter.py +91 -196
  7. process_bigraph-0.0.43/process_bigraph/process_types.py +473 -0
  8. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/processes/growth_division.py +5 -3
  9. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/tests.py +393 -17
  10. process_bigraph-0.0.43/process_bigraph/units.py +25 -0
  11. {process-bigraph-0.0.41 → process_bigraph-0.0.43/process_bigraph.egg-info}/PKG-INFO +12 -19
  12. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph.egg-info/SOURCES.txt +1 -1
  13. process_bigraph-0.0.43/process_bigraph.egg-info/requires.txt +6 -0
  14. process_bigraph-0.0.43/pyproject.toml +23 -0
  15. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/release.sh +18 -20
  16. process_bigraph-0.0.43/setup.py +10 -0
  17. process-bigraph-0.0.41/process_bigraph/composite.py +0 -1320
  18. process-bigraph-0.0.41/process_bigraph/process_types.py +0 -382
  19. process-bigraph-0.0.41/process_bigraph/protocols.py +0 -27
  20. process-bigraph-0.0.41/process_bigraph.egg-info/requires.txt +0 -3
  21. process-bigraph-0.0.41/pyproject.toml +0 -19
  22. process-bigraph-0.0.41/setup.py +0 -57
  23. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/.github/workflows/notebook_to_html.yml +0 -0
  24. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/.github/workflows/pytest.yml +0 -0
  25. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/AUTHORS.md +0 -0
  26. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/CLA.md +0 -0
  27. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/CODE_OF_CONDUCT.md +0 -0
  28. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/CONTRIBUTING.md +0 -0
  29. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/LICENSE +0 -0
  30. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/doc/_static/process-bigraph.png +0 -0
  31. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/notebooks/process-bigraphs.ipynb +0 -0
  32. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/notebooks/visualize_processes.ipynb +0 -0
  33. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/experiments/__init__.py +0 -0
  34. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/experiments/minimal_gillespie.py +0 -0
  35. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/processes/__init__.py +0 -0
  36. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph/processes/parameter_scan.py +0 -0
  37. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph.egg-info/dependency_links.txt +0 -0
  38. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/process_bigraph.egg-info/top_level.txt +0 -0
  39. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/pytest.ini +0 -0
  40. {process-bigraph-0.0.41 → process_bigraph-0.0.43}/setup.cfg +0 -0
@@ -12,4 +12,6 @@ venv/
12
12
  process_bigraph.egg-info/
13
13
  out/
14
14
  .devenv*
15
- devenv.lock
15
+ devenv.lock
16
+ containers/
17
+ uv.lock
@@ -1,25 +1,18 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: process-bigraph
3
- Version: 0.0.41
4
- Home-page: https://github.com/vivarium-collective/process-bigraph
5
- Author: Ryan Spangler, Eran Agmon
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.43
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
 
@@ -69,4 +62,4 @@ diagraph of a whole-cell E. coli model.
69
62
 
70
63
  ## License
71
64
 
72
- Bigraph-schema is open-source software released under the [Apache 2 License](https://github.com/vivarium-collective/process-bigraph/blob/main/LICENSE).
65
+ 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
- Bigraph-schema is open-source software released under the [Apache 2 License](https://github.com/vivarium-collective/process-bigraph/blob/main/LICENSE).
49
+ process-bigraph is open-source software released under the [Apache 2 License](https://github.com/vivarium-collective/process-bigraph/blob/main/LICENSE).
@@ -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, ProcessTypes
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