netrun 0.1.0__py3-none-any.whl → 0.2.0__py3-none-any.whl
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.
- netrun-0.2.0.dist-info/METADATA +16 -0
- netrun-0.2.0.dist-info/RECORD +3 -0
- {netrun-0.1.0.dist-info → netrun-0.2.0.dist-info}/WHEEL +1 -2
- netrun/__init__.py +0 -2
- netrun/graph.py +0 -38
- netrun-0.1.0.dist-info/METADATA +0 -9
- netrun-0.1.0.dist-info/RECORD +0 -6
- netrun-0.1.0.dist-info/top_level.txt +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: netrun
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: A flow-based development (FBD) runtime system.
|
|
5
|
+
Project-URL: Homepage, https://github.com/lukastk/netrun
|
|
6
|
+
Project-URL: Documentation, https://github.com/lukastk/netrun
|
|
7
|
+
Project-URL: Repository, https://github.com/lukastk/netrun
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Requires-Dist: diskcache>=5.6.3
|
|
10
|
+
Requires-Dist: nblite>=1.1.1
|
|
11
|
+
Requires-Dist: netrun-sim>=0.1.1
|
|
12
|
+
Requires-Dist: websockets>=16.0
|
|
13
|
+
Requires-Dist: xxhash>=3.6.0
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
A flow-based development (FBD) runtime system.
|
netrun/__init__.py
DELETED
netrun/graph.py
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# AUTOGENERATED! DO NOT EDIT! File to edit: ../../../pts/netrun/graph.pct.py.
|
|
2
|
-
|
|
3
|
-
# %% auto 0
|
|
4
|
-
__all__ = ['Node', 'Graph']
|
|
5
|
-
|
|
6
|
-
# %% ../../../pts/netrun/graph.pct.py 2
|
|
7
|
-
from typing import Callable, Optional
|
|
8
|
-
from dataclasses import dataclass
|
|
9
|
-
|
|
10
|
-
import netrun_sim
|
|
11
|
-
from netrun_sim import Port, SalvoConditionTerm, SalvoCondition
|
|
12
|
-
|
|
13
|
-
# %% ../../../pts/netrun/graph.pct.py 3
|
|
14
|
-
@dataclass
|
|
15
|
-
class Node:
|
|
16
|
-
name: str
|
|
17
|
-
in_ports: dict[str, Port]
|
|
18
|
-
out_ports: dict[str, Port]
|
|
19
|
-
in_salvo_conditions: dict[str, SalvoCondition]
|
|
20
|
-
out_salvo_conditions: dict[str, SalvoCondition]
|
|
21
|
-
|
|
22
|
-
epoch_func: Callable[[], None]
|
|
23
|
-
startup_func: Optional[Callable[[], None]]
|
|
24
|
-
shutdown_func: Optional[Callable[[], None]]
|
|
25
|
-
|
|
26
|
-
def __post_init__(self):
|
|
27
|
-
self._node_spec = netrun_sim.Node(
|
|
28
|
-
name=name,
|
|
29
|
-
in_ports=in_ports,
|
|
30
|
-
out_ports=out_ports,
|
|
31
|
-
in_salvo_conditions=in_salvo_conditions,
|
|
32
|
-
out_salvo_conditions=out_salvo_conditions,
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
# %% ../../../pts/netrun/graph.pct.py 4
|
|
36
|
-
class Graph:
|
|
37
|
-
nodes: list[Node]
|
|
38
|
-
edges: list[Edge]
|
netrun-0.1.0.dist-info/METADATA
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: netrun
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: A flow-based development (FBD) runtime system.
|
|
5
|
-
Requires-Python: >=3.11
|
|
6
|
-
Description-Content-Type: text/markdown
|
|
7
|
-
Requires-Dist: netrun-sim>=0.1.1
|
|
8
|
-
|
|
9
|
-
A flow-based development (FBD) runtime system.
|
netrun-0.1.0.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
netrun/__init__.py,sha256=R7lBGgsb_CP2DL7HwRwwsUw-13SD3Lz5AvM8P9ZXxvg,73
|
|
2
|
-
netrun/graph.py,sha256=aEJYRV1mfiqyAlH8cMenVM6DXiTv-jPxyLzROyN_zSg,1064
|
|
3
|
-
netrun-0.1.0.dist-info/METADATA,sha256=1Xi-YxCSrJVayubFl1I-PTgSP1LcRT26CQWXd4pLVSY,251
|
|
4
|
-
netrun-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5
|
-
netrun-0.1.0.dist-info/top_level.txt,sha256=oldmIW4MV0MJLci6IobS7M9xKBu6pOW-6CwydW1CeNk,7
|
|
6
|
-
netrun-0.1.0.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
netrun
|