pyjevsim 1.3.0__tar.gz → 1.3.1__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.
- {pyjevsim-1.3.0/pyjevsim.egg-info → pyjevsim-1.3.1}/PKG-INFO +2 -4
- {pyjevsim-1.3.0 → pyjevsim-1.3.1/pyjevsim.egg-info}/PKG-INFO +2 -4
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim.egg-info/requires.txt +1 -4
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyproject.toml +3 -3
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/LICENSE +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/MANIFEST.in +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/README.md +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/__init__.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/atomic_model.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/behavior_executor.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/behavior_model.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/core_model.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/default_message_catcher.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/definition.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/executor.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/executor_factory.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/exgen.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/message_deliverer.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/restore_handler.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/schedule_queue.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/snapshot_condition.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/snapshot_executor.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/snapshot_factory.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/snapshot_manager.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/structural_executor.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/structural_model.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/system_executor.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/system_message.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/system_object.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim/termination_manager.py +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim.egg-info/SOURCES.txt +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim.egg-info/dependency_links.txt +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/pyjevsim.egg-info/top_level.txt +0 -0
- {pyjevsim-1.3.0 → pyjevsim-1.3.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyjevsim
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: A DEVS(Discrete Event System Specification) Modeling & Simulation environment with journaling functionality
|
|
5
5
|
Author-email: Changbeom Choi <me@cbchoi.info>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -20,11 +20,9 @@ Classifier: Intended Audience :: Science/Research
|
|
|
20
20
|
Requires-Python: >=3.10
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
|
|
24
|
-
Requires-Dist: dill>=0.3.6; extra == "snapshot"
|
|
23
|
+
Requires-Dist: dill>=0.3.6
|
|
25
24
|
Provides-Extra: dev
|
|
26
25
|
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
27
|
-
Requires-Dist: dill>=0.3.6; extra == "dev"
|
|
28
26
|
Dynamic: license-file
|
|
29
27
|
|
|
30
28
|
# pyjevsim
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyjevsim
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: A DEVS(Discrete Event System Specification) Modeling & Simulation environment with journaling functionality
|
|
5
5
|
Author-email: Changbeom Choi <me@cbchoi.info>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -20,11 +20,9 @@ Classifier: Intended Audience :: Science/Research
|
|
|
20
20
|
Requires-Python: >=3.10
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
|
|
24
|
-
Requires-Dist: dill>=0.3.6; extra == "snapshot"
|
|
23
|
+
Requires-Dist: dill>=0.3.6
|
|
25
24
|
Provides-Extra: dev
|
|
26
25
|
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
27
|
-
Requires-Dist: dill>=0.3.6; extra == "dev"
|
|
28
26
|
Dynamic: license-file
|
|
29
27
|
|
|
30
28
|
# pyjevsim
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pyjevsim"
|
|
7
|
-
version = "1.3.
|
|
7
|
+
version = "1.3.1"
|
|
8
8
|
description = "A DEVS(Discrete Event System Specification) Modeling & Simulation environment with journaling functionality"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -23,10 +23,10 @@ classifiers = [
|
|
|
23
23
|
"Intended Audience :: Science/Research",
|
|
24
24
|
]
|
|
25
25
|
keywords = ["DEVS", "simulation", "discrete-event", "modeling"]
|
|
26
|
+
dependencies = ["dill>=0.3.6"]
|
|
26
27
|
|
|
27
28
|
[project.optional-dependencies]
|
|
28
|
-
|
|
29
|
-
dev = ["pytest>=7.0", "dill>=0.3.6"]
|
|
29
|
+
dev = ["pytest>=7.0"]
|
|
30
30
|
|
|
31
31
|
[project.urls]
|
|
32
32
|
Homepage = "https://github.com/eventsim/pyjevsim"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|