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.
Files changed (38) hide show
  1. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/.gitignore +3 -1
  2. {process-bigraph-0.0.42/process_bigraph.egg-info → process_bigraph-0.0.44}/PKG-INFO +11 -18
  3. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/__init__.py +3 -2
  4. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/composite.py +241 -384
  5. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/emitter.py +2 -3
  6. process_bigraph-0.0.44/process_bigraph/process_types.py +473 -0
  7. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/processes/growth_division.py +5 -3
  8. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/tests.py +274 -16
  9. process_bigraph-0.0.44/process_bigraph/units.py +25 -0
  10. {process-bigraph-0.0.42 → process_bigraph-0.0.44/process_bigraph.egg-info}/PKG-INFO +11 -18
  11. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph.egg-info/SOURCES.txt +1 -1
  12. process_bigraph-0.0.44/process_bigraph.egg-info/requires.txt +6 -0
  13. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/pyproject.toml +7 -4
  14. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/release.sh +18 -20
  15. process_bigraph-0.0.44/setup.py +10 -0
  16. process-bigraph-0.0.42/process_bigraph/process_types.py +0 -382
  17. process-bigraph-0.0.42/process_bigraph/protocols.py +0 -27
  18. process-bigraph-0.0.42/process_bigraph.egg-info/requires.txt +0 -3
  19. process-bigraph-0.0.42/setup.py +0 -57
  20. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/.github/workflows/notebook_to_html.yml +0 -0
  21. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/.github/workflows/pytest.yml +0 -0
  22. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/AUTHORS.md +0 -0
  23. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/CLA.md +0 -0
  24. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/CODE_OF_CONDUCT.md +0 -0
  25. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/CONTRIBUTING.md +0 -0
  26. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/LICENSE +0 -0
  27. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/README.md +0 -0
  28. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/doc/_static/process-bigraph.png +0 -0
  29. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/notebooks/process-bigraphs.ipynb +0 -0
  30. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/notebooks/visualize_processes.ipynb +0 -0
  31. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/experiments/__init__.py +0 -0
  32. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/experiments/minimal_gillespie.py +0 -0
  33. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/processes/__init__.py +0 -0
  34. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph/processes/parameter_scan.py +0 -0
  35. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph.egg-info/dependency_links.txt +0 -0
  36. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/process_bigraph.egg-info/top_level.txt +0 -0
  37. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/pytest.ini +0 -0
  38. {process-bigraph-0.0.42 → process_bigraph-0.0.44}/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.42
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.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, 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