-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathscript_info.py
132 lines (132 loc) · 4.93 KB
/
script_info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
script_info = {
"modules": [
{
"relativeOutputPath": "_base_interpreter.py",
"templateFile": "_base_interpreter.py.mako",
},
{
"relativeOutputPath": "_library_interpreter.py",
"templateFile": "_library_interpreter.py.mako",
},
{
"relativeOutputPath": "_grpc_interpreter.py",
"templateFile": "_grpc_interpreter.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_channel.py",
"templateFile": "task\\channels\\_channel.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_ai_channel.py",
"templateFile": "task\\channels\\_ai_channel.py.mako",
},
{
"relativeOutputPath": "task\\_in_stream.py",
"templateFile": "task\\_in_stream.py.mako",
},
{
"relativeOutputPath": "task\\_out_stream.py",
"templateFile": "task\\_out_stream.py.mako",
},
{
"relativeOutputPath": "system\\watchdog\\_expiration_state.py",
"templateFile": "system\\watchdog\\_expiration_state.py.mako",
},
{
"relativeOutputPath": "system\\watchdog\\_watchdog.py",
"templateFile": "system\\watchdog\\_watchdog.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_ao_channel.py",
"templateFile": "task\\channels\\_ao_channel.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_ci_channel.py",
"templateFile": "task\\channels\\_ci_channel.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_co_channel.py",
"templateFile": "task\\channels\\_co_channel.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_di_channel.py",
"templateFile": "task\\channels\\_di_channel.py.mako",
},
{
"relativeOutputPath": "task\\channels\\_do_channel.py",
"templateFile": "task\\channels\\_do_channel.py.mako",
},
{
"relativeOutputPath": "task\\collections\\_ai_channel_collection.py",
"templateFile": "task\\collections\\_ai_channel_collection.py.mako",
},
{
"relativeOutputPath": "task\\collections\\_ao_channel_collection.py",
"templateFile": "task\\collections\\_ao_channel_collection.py.mako",
},
{
"relativeOutputPath": "task\\collections\\_ci_channel_collection.py",
"templateFile": "task\\collections\\_ci_channel_collection.py.mako",
},
{
"relativeOutputPath": "task\\collections\\_co_channel_collection.py",
"templateFile": "task\\collections\\_co_channel_collection.py.mako",
},
{
"relativeOutputPath": "task\\collections\\_di_channel_collection.py",
"templateFile": "task\\collections\\_di_channel_collection.py.mako",
},
{
"relativeOutputPath": "task\\collections\\_do_channel_collection.py",
"templateFile": "task\\collections\\_do_channel_collection.py.mako",
},
{
"relativeOutputPath": "task\\_timing.py",
"templateFile": "task\\_timing.py.mako",
},
{
"relativeOutputPath": "scale.py",
"templateFile": "scale.py.mako",
},
{
"relativeOutputPath": "task\\_export_signals.py",
"templateFile": "task\\_export_signals.py.mako",
},
{
"relativeOutputPath": "task\\triggering\\_arm_start_trigger.py",
"templateFile": "task\\triggering\\_arm_start_trigger.py.mako",
},
{
"relativeOutputPath": "task\\triggering\\_handshake_trigger.py",
"templateFile": "task\\triggering\\_handshake_trigger.py.mako",
},
{
"relativeOutputPath": "task\\triggering\\_pause_trigger.py",
"templateFile": "task\\triggering\\_pause_trigger.py.mako",
},
{
"relativeOutputPath": "task\\triggering\\_reference_trigger.py",
"templateFile": "task\\triggering\\_reference_trigger.py.mako",
},
{
"relativeOutputPath": "task\\triggering\\_start_trigger.py",
"templateFile": "task\\triggering\\_start_trigger.py.mako",
},
{
"relativeOutputPath": "system\\system.py",
"templateFile": "system\\system.py.mako",
},
{
"relativeOutputPath": "system\\device.py",
"templateFile": "system\\device.py.mako",
},
{
"relativeOutputPath": "system\\physical_channel.py",
"templateFile": "system\\physical_channel.py.mako",
},
{
"relativeOutputPath": "task\\triggering\\_triggers.py",
"templateFile": "task\\triggering\\_triggers.py.mako",
},
]
}