sl-shared-assets 3.0.0rc8__py3-none-any.whl → 3.0.0rc10__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.
Potentially problematic release.
This version of sl-shared-assets might be problematic. Click here for more details.
- sl_shared_assets/data_classes/configuration_data.py +25 -14
- sl_shared_assets/data_classes/configuration_data.pyi +5 -3
- sl_shared_assets/data_classes/runtime_data.py +14 -17
- sl_shared_assets/data_classes/runtime_data.pyi +4 -7
- sl_shared_assets/data_classes/session_data.py +14 -0
- sl_shared_assets/data_classes/session_data.pyi +7 -0
- sl_shared_assets/tools/ascension_tools.py +3 -0
- {sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/METADATA +1 -1
- {sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/RECORD +12 -12
- {sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/WHEEL +0 -0
- {sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/entry_points.txt +0 -0
- {sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/licenses/LICENSE +0 -0
|
@@ -44,7 +44,7 @@ class ExperimentState:
|
|
|
44
44
|
automatically enabled. Specifically, if the experiment state supports running linearized Virtual Reality track, the
|
|
45
45
|
system will enable lick guidance for this many trials at the beginning of the experiment state and automatically
|
|
46
46
|
disable it for the following trials."""
|
|
47
|
-
|
|
47
|
+
recovery_failed_trial_threshold: int
|
|
48
48
|
"""Specifies the number of failed (non-rewarded) non-guided trials (laps), after which the system will re-enable
|
|
49
49
|
guidance for the 'recovery_guided_trials' number of following trials. For this to take effect, the trials must be
|
|
50
50
|
failed this many times in a row."""
|
|
@@ -72,8 +72,15 @@ class ExperimentTrial:
|
|
|
72
72
|
"""The length of the trial cue sequence, in Unity units."""
|
|
73
73
|
trial_length_cm: float
|
|
74
74
|
"""The length of the trial cue sequence in centimeters."""
|
|
75
|
-
trial_reward_size_ul: float
|
|
75
|
+
trial_reward_size_ul: float
|
|
76
76
|
"""The volume of water, in microliters, to be dispensed when the animal successfully completes the trial task."""
|
|
77
|
+
reward_zone_start_cm: float
|
|
78
|
+
"""Specifies the starting boundary of the trial reward zone, in centimeters."""
|
|
79
|
+
reward_zone_end_cm: float
|
|
80
|
+
"""Specifies the ending boundary of the trial reward zone, in centimeters."""
|
|
81
|
+
guidance_trigger_location_cm: float
|
|
82
|
+
"""Specifies the location of the invisible boundary (wall) with which the animal must collide to elicit automated
|
|
83
|
+
water reward during guided trials."""
|
|
77
84
|
|
|
78
85
|
|
|
79
86
|
# noinspection PyArgumentList
|
|
@@ -101,7 +108,7 @@ class MesoscopeExperimentConfiguration(YamlConfig):
|
|
|
101
108
|
environment to its length in real-world centimeters. It is used to map each VR cue to the distance the animal needs
|
|
102
109
|
to travel to fully traverse the wall cue region from start to end."""
|
|
103
110
|
cue_offset_cm: float = 10.0
|
|
104
|
-
"""Specifies the positive offset distance, in centimeters, by which the animal's
|
|
111
|
+
"""Specifies the positive offset distance, in centimeters, by which the animal's running track is shifted
|
|
105
112
|
relative to experiment environment onset. Due to how the VR environment is revealed to the animal, most runtimes
|
|
106
113
|
need to shift the animal slightly forward relative to the track origin (0), to prevent it from seeing the area
|
|
107
114
|
before the first VR wall cue when the task starts and when the animal is teleported to the beginning of the track.
|
|
@@ -115,7 +122,7 @@ class MesoscopeExperimentConfiguration(YamlConfig):
|
|
|
115
122
|
system_state_code=1,
|
|
116
123
|
state_duration_s=30,
|
|
117
124
|
initial_guided_trials=0,
|
|
118
|
-
|
|
125
|
+
recovery_failed_trial_threshold=0,
|
|
119
126
|
recovery_guided_trials=0,
|
|
120
127
|
),
|
|
121
128
|
"experiment": ExperimentState(
|
|
@@ -123,7 +130,7 @@ class MesoscopeExperimentConfiguration(YamlConfig):
|
|
|
123
130
|
system_state_code=2,
|
|
124
131
|
state_duration_s=120,
|
|
125
132
|
initial_guided_trials=3,
|
|
126
|
-
|
|
133
|
+
recovery_failed_trial_threshold=6,
|
|
127
134
|
recovery_guided_trials=3,
|
|
128
135
|
),
|
|
129
136
|
"cooldown": ExperimentState(
|
|
@@ -131,7 +138,7 @@ class MesoscopeExperimentConfiguration(YamlConfig):
|
|
|
131
138
|
system_state_code=1,
|
|
132
139
|
state_duration_s=15,
|
|
133
140
|
initial_guided_trials=1000000,
|
|
134
|
-
|
|
141
|
+
recovery_failed_trial_threshold=0,
|
|
135
142
|
recovery_guided_trials=0,
|
|
136
143
|
),
|
|
137
144
|
}
|
|
@@ -141,10 +148,13 @@ class MesoscopeExperimentConfiguration(YamlConfig):
|
|
|
141
148
|
trial_structures: dict[str, ExperimentTrial] = field(
|
|
142
149
|
default_factory=lambda: {
|
|
143
150
|
"cyclic_4_cue": ExperimentTrial(
|
|
144
|
-
cue_sequence=[
|
|
151
|
+
cue_sequence=[1, 0, 2, 0, 3, 0, 4, 0],
|
|
145
152
|
trial_length_unity_unit=24.0,
|
|
146
153
|
trial_length_cm=240.0,
|
|
147
154
|
trial_reward_size_ul=5.0,
|
|
155
|
+
reward_zone_start_cm=208.0,
|
|
156
|
+
reward_zone_end_cm=222.0,
|
|
157
|
+
guidance_trigger_location_cm=208.0,
|
|
148
158
|
)
|
|
149
159
|
}
|
|
150
160
|
)
|
|
@@ -245,9 +255,6 @@ class MesoscopeMicroControllers:
|
|
|
245
255
|
"""Determines whether to run the managed acquisition system in the 'debug mode'. This mode should be disabled
|
|
246
256
|
during most runtimes. It is used during initial system calibration and testing and prints a lot of generally
|
|
247
257
|
redundant information into the terminal."""
|
|
248
|
-
mesoscope_ttl_pulse_duration_ms: int = 10
|
|
249
|
-
"""The duration of the HIGH phase of all outgoing TTL pulses that target the Mesoscope (enable or disable mesoscope
|
|
250
|
-
frame acquisition), in milliseconds."""
|
|
251
258
|
minimum_break_strength_g_cm: float = 43.2047
|
|
252
259
|
"""The minimum torque applied by the running wheel break in gram centimeter. This is the torque the break delivers
|
|
253
260
|
at minimum voltage (break is disabled)."""
|
|
@@ -267,8 +274,10 @@ class MesoscopeMicroControllers:
|
|
|
267
274
|
"""The minimum absolute difference in raw analog units recorded by a 12-bit Analog-to-Digital-Converter (ADC) for
|
|
268
275
|
the change to be reported to the PC. This is used to prevent reporting repeated non-lick or lick readouts to the
|
|
269
276
|
PC, conserving communication bandwidth."""
|
|
270
|
-
lick_averaging_pool_size: int =
|
|
271
|
-
"""The number of lick sensor readouts to average together to produce the final lick sensor readout value.
|
|
277
|
+
lick_averaging_pool_size: int = 1
|
|
278
|
+
"""The number of lick sensor readouts to average together to produce the final lick sensor readout value. Note,
|
|
279
|
+
when using a Teensy controller, this number is multiplied by the built-in analog readout averaging (default is 4).
|
|
280
|
+
"""
|
|
272
281
|
torque_baseline_voltage_adc: int = 2046
|
|
273
282
|
"""The voltage level, in raw analog units measured by 3.3v Analog-to-Digital-Converter (ADC) at 12-bit resolution
|
|
274
283
|
after the AD620 amplifier, that corresponds to no (0) torque readout. Usually, for a 3.3v ADC, this would be
|
|
@@ -292,8 +301,10 @@ class MesoscopeMicroControllers:
|
|
|
292
301
|
"""The minimum absolute difference in raw analog units recorded by a 12-bit Analog-to-Digital-Converter (ADC) for
|
|
293
302
|
the change to be reported to the PC. This is used to prevent reporting repeated static torque readouts to the
|
|
294
303
|
PC, conserving communication bandwidth."""
|
|
295
|
-
torque_averaging_pool_size: int =
|
|
296
|
-
"""The number of torque sensor readouts to average together to produce the final torque sensor readout value.
|
|
304
|
+
torque_averaging_pool_size: int = 1
|
|
305
|
+
"""The number of torque sensor readouts to average together to produce the final torque sensor readout value. Note,
|
|
306
|
+
when using a Teensy controller, this number is multiplied by the built-in analog readout averaging (default is 4).
|
|
307
|
+
"""
|
|
297
308
|
wheel_encoder_ppr: int = 8192
|
|
298
309
|
"""The resolution of the managed quadrature encoder, in Pulses Per Revolution (PPR). This is the number of
|
|
299
310
|
quadrature pulses the encoder emits per full 360-degree rotation."""
|
|
@@ -24,7 +24,7 @@ class ExperimentState:
|
|
|
24
24
|
system_state_code: int
|
|
25
25
|
state_duration_s: float
|
|
26
26
|
initial_guided_trials: int
|
|
27
|
-
|
|
27
|
+
recovery_failed_trial_threshold: int
|
|
28
28
|
recovery_guided_trials: int
|
|
29
29
|
|
|
30
30
|
@dataclass()
|
|
@@ -41,7 +41,10 @@ class ExperimentTrial:
|
|
|
41
41
|
cue_sequence: list[int]
|
|
42
42
|
trial_length_unity_unit: float
|
|
43
43
|
trial_length_cm: float
|
|
44
|
-
trial_reward_size_ul: float
|
|
44
|
+
trial_reward_size_ul: float
|
|
45
|
+
reward_zone_start_cm: float
|
|
46
|
+
reward_zone_end_cm: float
|
|
47
|
+
guidance_trigger_location_cm: float
|
|
45
48
|
|
|
46
49
|
@dataclass()
|
|
47
50
|
class MesoscopeExperimentConfiguration(YamlConfig):
|
|
@@ -107,7 +110,6 @@ class MesoscopeMicroControllers:
|
|
|
107
110
|
sensor_port: str = ...
|
|
108
111
|
encoder_port: str = ...
|
|
109
112
|
debug: bool = ...
|
|
110
|
-
mesoscope_ttl_pulse_duration_ms: int = ...
|
|
111
113
|
minimum_break_strength_g_cm: float = ...
|
|
112
114
|
maximum_break_strength_g_cm: float = ...
|
|
113
115
|
wheel_diameter_cm: float = ...
|
|
@@ -205,10 +205,6 @@ class ZaberPositions(YamlConfig):
|
|
|
205
205
|
Zaber motor positions across consecutive runtimes for the same project and animal combination.
|
|
206
206
|
|
|
207
207
|
Notes:
|
|
208
|
-
The HeadBar axis (connection) also manages the motor that moves the running wheel along the x-axis. While the
|
|
209
|
-
motor itself is not part of the HeadBar assembly, it is related to positioning the mouse in the VR system. This
|
|
210
|
-
is in contrast to the LickPort group, which is related to positioning the lick tube relative to the mouse.
|
|
211
|
-
|
|
212
208
|
All positions are saved using native motor units. All class fields initialize to default placeholders that are
|
|
213
209
|
likely NOT safe to apply to the VR system. Do not apply the positions loaded from the file unless you are
|
|
214
210
|
certain they are safe to use.
|
|
@@ -226,13 +222,12 @@ class ZaberPositions(YamlConfig):
|
|
|
226
222
|
"""The absolute position, in native motor units, of the HeadBar roll-axis motor."""
|
|
227
223
|
lickport_z: int = 0
|
|
228
224
|
"""The absolute position, in native motor units, of the LickPort z-axis motor."""
|
|
229
|
-
lickport_x: int = 0
|
|
230
|
-
"""The absolute position, in native motor units, of the LickPort x-axis motor."""
|
|
231
225
|
lickport_y: int = 0
|
|
232
226
|
"""The absolute position, in native motor units, of the LickPort y-axis motor."""
|
|
227
|
+
lickport_x: int = 0
|
|
228
|
+
"""The absolute position, in native motor units, of the LickPort x-axis motor."""
|
|
233
229
|
wheel_x: int = 0
|
|
234
|
-
"""The absolute position, in native motor units, of the running wheel platform x-axis motor.
|
|
235
|
-
not itself part of the HeadBar assembly, it is controlled through the HeadBar controller port."""
|
|
230
|
+
"""The absolute position, in native motor units, of the running wheel platform x-axis motor."""
|
|
236
231
|
|
|
237
232
|
|
|
238
233
|
@dataclass()
|
|
@@ -240,9 +235,9 @@ class MesoscopePositions(YamlConfig):
|
|
|
240
235
|
"""Stores real and virtual Mesoscope objective positions reused between experiment sessions that use the
|
|
241
236
|
Mesoscope-VR system.
|
|
242
237
|
|
|
243
|
-
Primarily, the class is used to help the experimenter to position the Mesoscope
|
|
238
|
+
Primarily, the class is used to help the experimenter to position the Mesoscope on the same imaging plane across
|
|
244
239
|
multiple imaging sessions. It stores both the physical (real) position of the objective along the motorized
|
|
245
|
-
X, Y, Z, and Roll axes and the virtual (ScanImage software) tip, tilt, and fastZ focus axes.
|
|
240
|
+
X, Y, Z, and Roll axes, and the virtual (ScanImage software) tip, tilt, and fastZ focus axes.
|
|
246
241
|
|
|
247
242
|
Notes:
|
|
248
243
|
Since the API to read and write these positions automatically is currently not available, this class relies on
|
|
@@ -250,16 +245,18 @@ class MesoscopePositions(YamlConfig):
|
|
|
250
245
|
"""
|
|
251
246
|
|
|
252
247
|
mesoscope_x: float = 0.0
|
|
253
|
-
"""The X-axis position, in centimeters, of the Mesoscope objective
|
|
248
|
+
"""The X-axis position, in centimeters, of the Mesoscope objective."""
|
|
254
249
|
mesoscope_y: float = 0.0
|
|
255
|
-
"""The Y-axis position, in centimeters, of the Mesoscope objective
|
|
250
|
+
"""The Y-axis position, in centimeters, of the Mesoscope objective."""
|
|
256
251
|
mesoscope_roll: float = 0.0
|
|
257
|
-
"""The Roll-axis position, in degrees, of the Mesoscope objective
|
|
252
|
+
"""The Roll-axis position, in degrees, of the Mesoscope objective."""
|
|
258
253
|
mesoscope_z: float = 0.0
|
|
259
|
-
"""The Z-axis position, in centimeters, of the Mesoscope objective
|
|
254
|
+
"""The Z-axis position, in centimeters, of the Mesoscope objective."""
|
|
260
255
|
mesoscope_fast_z: float = 0.0
|
|
261
|
-
"""The Fast-Z-axis position, in micrometers
|
|
256
|
+
"""The Fast-Z-axis (virtual Z) position, in micrometers."""
|
|
262
257
|
mesoscope_tip: float = 0.0
|
|
263
|
-
"""The Tilt-axis position, in degrees
|
|
258
|
+
"""The Tilt-axis (software) position, in degrees.."""
|
|
264
259
|
mesoscope_tilt: float = 0.0
|
|
265
|
-
"""The Tip-axis position, in degrees
|
|
260
|
+
"""The Tip-axis (software) position, in degrees."""
|
|
261
|
+
laser_power_mw: float = 0.0
|
|
262
|
+
"""The excitation laser power delivered to the sample, in milliwatts."""
|
|
@@ -106,10 +106,6 @@ class ZaberPositions(YamlConfig):
|
|
|
106
106
|
Zaber motor positions across consecutive runtimes for the same project and animal combination.
|
|
107
107
|
|
|
108
108
|
Notes:
|
|
109
|
-
The HeadBar axis (connection) also manages the motor that moves the running wheel along the x-axis. While the
|
|
110
|
-
motor itself is not part of the HeadBar assembly, it is related to positioning the mouse in the VR system. This
|
|
111
|
-
is in contrast to the LickPort group, which is related to positioning the lick tube relative to the mouse.
|
|
112
|
-
|
|
113
109
|
All positions are saved using native motor units. All class fields initialize to default placeholders that are
|
|
114
110
|
likely NOT safe to apply to the VR system. Do not apply the positions loaded from the file unless you are
|
|
115
111
|
certain they are safe to use.
|
|
@@ -123,8 +119,8 @@ class ZaberPositions(YamlConfig):
|
|
|
123
119
|
headbar_pitch: int = ...
|
|
124
120
|
headbar_roll: int = ...
|
|
125
121
|
lickport_z: int = ...
|
|
126
|
-
lickport_x: int = ...
|
|
127
122
|
lickport_y: int = ...
|
|
123
|
+
lickport_x: int = ...
|
|
128
124
|
wheel_x: int = ...
|
|
129
125
|
|
|
130
126
|
@dataclass()
|
|
@@ -132,9 +128,9 @@ class MesoscopePositions(YamlConfig):
|
|
|
132
128
|
"""Stores real and virtual Mesoscope objective positions reused between experiment sessions that use the
|
|
133
129
|
Mesoscope-VR system.
|
|
134
130
|
|
|
135
|
-
Primarily, the class is used to help the experimenter to position the Mesoscope
|
|
131
|
+
Primarily, the class is used to help the experimenter to position the Mesoscope on the same imaging plane across
|
|
136
132
|
multiple imaging sessions. It stores both the physical (real) position of the objective along the motorized
|
|
137
|
-
X, Y, Z, and Roll axes and the virtual (ScanImage software) tip, tilt, and fastZ focus axes.
|
|
133
|
+
X, Y, Z, and Roll axes, and the virtual (ScanImage software) tip, tilt, and fastZ focus axes.
|
|
138
134
|
|
|
139
135
|
Notes:
|
|
140
136
|
Since the API to read and write these positions automatically is currently not available, this class relies on
|
|
@@ -148,3 +144,4 @@ class MesoscopePositions(YamlConfig):
|
|
|
148
144
|
mesoscope_fast_z: float = ...
|
|
149
145
|
mesoscope_tip: float = ...
|
|
150
146
|
mesoscope_tilt: float = ...
|
|
147
|
+
laser_power_mw: float = ...
|
|
@@ -414,6 +414,11 @@ class SessionData(YamlConfig):
|
|
|
414
414
|
)
|
|
415
415
|
sh.copy2(experiment_configuration_path, instance.raw_data.experiment_configuration_path)
|
|
416
416
|
|
|
417
|
+
# All newly created sessions are marked with the 'nk.bin' file. If the marker is not removed during runtime,
|
|
418
|
+
# the session becomes a valid target for deletion (purging) runtimes operating from the main acquisition
|
|
419
|
+
# machine of any data acquisition system.
|
|
420
|
+
instance.raw_data.nk_path.touch()
|
|
421
|
+
|
|
417
422
|
# Returns the initialized SessionData instance to caller
|
|
418
423
|
return instance
|
|
419
424
|
|
|
@@ -493,6 +498,15 @@ class SessionData(YamlConfig):
|
|
|
493
498
|
# Returns the initialized SessionData instance to caller
|
|
494
499
|
return instance
|
|
495
500
|
|
|
501
|
+
def runtime_initialized(self) -> None:
|
|
502
|
+
"""Ensures that the 'nk.bin' marker file is removed from the session's raw_data folder.
|
|
503
|
+
|
|
504
|
+
This marker is generated as part of the SessionData initialization (creation) process to mark sessions that did
|
|
505
|
+
not fully initialize during runtime. This service method is designed to be called by the inner runtime control
|
|
506
|
+
functions and classes of the sl-experiment library and generally should not be called by end-users.
|
|
507
|
+
"""
|
|
508
|
+
self.raw_data.nk_path.unlink(missing_ok=True)
|
|
509
|
+
|
|
496
510
|
def _save(self) -> None:
|
|
497
511
|
"""Saves the instance data to the 'raw_data' directory of the managed session as a 'session_data.yaml' file.
|
|
498
512
|
|
|
@@ -191,6 +191,13 @@ class SessionData(YamlConfig):
|
|
|
191
191
|
Raises:
|
|
192
192
|
FileNotFoundError: If the 'session_data.yaml' file is not found under the session_path/raw_data/ subfolder.
|
|
193
193
|
|
|
194
|
+
"""
|
|
195
|
+
def runtime_initialized(self) -> None:
|
|
196
|
+
"""Ensures that the 'nk.bin' marker file is removed from the session's raw_data folder.
|
|
197
|
+
|
|
198
|
+
This marker is generated as part of the SessionData initialization (creation) process to mark sessions that did
|
|
199
|
+
not fully initialize during runtime. This service method is designed to be called by the inner runtime control
|
|
200
|
+
functions and classes of the sl-experiment library and generally should not be called by end-users.
|
|
194
201
|
"""
|
|
195
202
|
def _save(self) -> None:
|
|
196
203
|
"""Saves the instance data to the 'raw_data' directory of the managed session as a 'session_data.yaml' file.
|
|
@@ -226,6 +226,9 @@ def ascend_tyche_data(root_directory: Path) -> None:
|
|
|
226
226
|
experiment_name=None,
|
|
227
227
|
)
|
|
228
228
|
|
|
229
|
+
# Since this runtime reprocesses already acquired data, marks the session as fully initialized.
|
|
230
|
+
session_data.runtime_initialized()
|
|
231
|
+
|
|
229
232
|
# Moves the data from the old hierarchy to the new hierarchy. If the process runs as expected, and
|
|
230
233
|
# fully empties the source acquisition folder, destroys the folder. Otherwise, notifies the user that
|
|
231
234
|
# the runtime did not fully process the session data and requests intervention.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sl-shared-assets
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0rc10
|
|
4
4
|
Summary: Provides data acquisition and processing assets shared between Sun (NeuroAI) lab libraries.
|
|
5
5
|
Project-URL: Homepage, https://github.com/Sun-Lab-NBB/sl-shared-assets
|
|
6
6
|
Project-URL: Documentation, https://sl-shared-assets-api-docs.netlify.app/
|
|
@@ -5,12 +5,12 @@ sl_shared_assets/cli.pyi,sha256=8ZJK56_jh2QlF3XCN6c7fI6Z022XtehB0eCrQDJbAsU,5515
|
|
|
5
5
|
sl_shared_assets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
sl_shared_assets/data_classes/__init__.py,sha256=SUDN7gFngUPEa7Da_G0PjXwnF9Q0S4EgvjpKe3KSr5g,1852
|
|
7
7
|
sl_shared_assets/data_classes/__init__.pyi,sha256=J-tUXAtGEasacVU1qGFFksvfB1tFdEO-GKs90vSTAcg,2022
|
|
8
|
-
sl_shared_assets/data_classes/configuration_data.py,sha256=
|
|
9
|
-
sl_shared_assets/data_classes/configuration_data.pyi,sha256=
|
|
10
|
-
sl_shared_assets/data_classes/runtime_data.py,sha256=
|
|
11
|
-
sl_shared_assets/data_classes/runtime_data.pyi,sha256=
|
|
12
|
-
sl_shared_assets/data_classes/session_data.py,sha256=
|
|
13
|
-
sl_shared_assets/data_classes/session_data.pyi,sha256=
|
|
8
|
+
sl_shared_assets/data_classes/configuration_data.py,sha256=bTkfJqQfNdw-vnsZfzLBE_rLFR_YoiYM3BZQt08Syp4,35425
|
|
9
|
+
sl_shared_assets/data_classes/configuration_data.pyi,sha256=9X06Zsuj2p3XTOdb651rBnZ2RYdRzlv1F7KiMOtNF_8,10781
|
|
10
|
+
sl_shared_assets/data_classes/runtime_data.py,sha256=MwNe_Ilg-DwfgboYafizRj--05z85WsIHQimxDUqI0w,15937
|
|
11
|
+
sl_shared_assets/data_classes/runtime_data.pyi,sha256=BX4sPgr47pitg24N2fvCIFxjG_s9DkqCimF8hiO7Jmo,6545
|
|
12
|
+
sl_shared_assets/data_classes/session_data.py,sha256=yUcHYajAv0SKir2HOHYSMkXkusFL5XP_KfkzzvkmnX0,45576
|
|
13
|
+
sl_shared_assets/data_classes/session_data.pyi,sha256=hNNElZHOe5hlQAStkNqkYYl1UbfGh88LchYjBIqdreY,14153
|
|
14
14
|
sl_shared_assets/data_classes/surgery_data.py,sha256=qsMj3NkjhylAT9b_wHBY-1XwTu2xsZcZatdECmkA7Bs,7437
|
|
15
15
|
sl_shared_assets/data_classes/surgery_data.pyi,sha256=rf59lJ3tGSYKHQlEGXg75MnjajBwl0DYhL4TClAO4SM,2605
|
|
16
16
|
sl_shared_assets/server/__init__.py,sha256=w7y73RXXjBrWQsjU5g1QNCv_gsXDYnHos3NpOoR2AHA,452
|
|
@@ -21,7 +21,7 @@ sl_shared_assets/server/server.py,sha256=MGk1v49aEFeIChMDsiR7CXjVkWwDpD9kA1TK0fw
|
|
|
21
21
|
sl_shared_assets/server/server.pyi,sha256=5Yxq4txhjtd9w-6U9fPehzMeIZL5GcprVCHd9mPP6FI,15113
|
|
22
22
|
sl_shared_assets/tools/__init__.py,sha256=NktXk62E_HHOrO_93z_MVmSd6-Oir3mE4xE9Yr8Qa7U,682
|
|
23
23
|
sl_shared_assets/tools/__init__.pyi,sha256=0UXorfCXXmHQOP5z7hODpsqEX0DAkOta5VZqN6FSS-w,623
|
|
24
|
-
sl_shared_assets/tools/ascension_tools.py,sha256=
|
|
24
|
+
sl_shared_assets/tools/ascension_tools.py,sha256=1cDs6Nx3woL9UPESQBpMbP7mC5URxCdPmjpU_GN87c4,14595
|
|
25
25
|
sl_shared_assets/tools/ascension_tools.pyi,sha256=c-SI9TYJ1vmJXMV2pSW9Nri4mlySF8MtXqrvRvz5C8s,3705
|
|
26
26
|
sl_shared_assets/tools/packaging_tools.py,sha256=QikjeaE_A8FyVJi3cnWLeW-hUXy1-FF1N23muA5VfT4,7526
|
|
27
27
|
sl_shared_assets/tools/packaging_tools.pyi,sha256=vgGbAQCExwg-0A5F72MzEhzHxu97Nqg1yuz-5P89ycU,3118
|
|
@@ -29,8 +29,8 @@ sl_shared_assets/tools/project_management_tools.py,sha256=Z_U0R26w9Le1O-u66gyF5C
|
|
|
29
29
|
sl_shared_assets/tools/project_management_tools.pyi,sha256=4kok98nOZ4KnT-Sg-ZCZYg-WIM5qZqiyK8g1XiiDjHM,10375
|
|
30
30
|
sl_shared_assets/tools/transfer_tools.py,sha256=J26kwOp_NpPSY0-xu5FTw9udte-rm_mW1FJyaTNoqQI,6606
|
|
31
31
|
sl_shared_assets/tools/transfer_tools.pyi,sha256=FoH7eYZe7guGHfPr0MK5ggO62uXKwD2aJ7h1Bu7PaEE,3294
|
|
32
|
-
sl_shared_assets-3.0.
|
|
33
|
-
sl_shared_assets-3.0.
|
|
34
|
-
sl_shared_assets-3.0.
|
|
35
|
-
sl_shared_assets-3.0.
|
|
36
|
-
sl_shared_assets-3.0.
|
|
32
|
+
sl_shared_assets-3.0.0rc10.dist-info/METADATA,sha256=OpcKZWppCyDoGafIiWowtf9p9HZcdbV2lEuQPADmAqY,49310
|
|
33
|
+
sl_shared_assets-3.0.0rc10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
34
|
+
sl_shared_assets-3.0.0rc10.dist-info/entry_points.txt,sha256=UmO1rl7ly9N7HWPwWyP9E0b5KBUStpBo4TRoqNtizDY,430
|
|
35
|
+
sl_shared_assets-3.0.0rc10.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
36
|
+
sl_shared_assets-3.0.0rc10.dist-info/RECORD,,
|
|
File without changes
|
{sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{sl_shared_assets-3.0.0rc8.dist-info → sl_shared_assets-3.0.0rc10.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|