sl-shared-assets 1.0.0rc8__py3-none-any.whl → 1.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sl-shared-assets
3
- Version: 1.0.0rc8
3
+ Version: 1.0.0rc10
4
4
  Summary: Stores assets shared between multiple Sun (NeuroAI) lab data pipelines.
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/
@@ -0,0 +1,14 @@
1
+ sl_shared_assets/__init__.py,sha256=Ky1AHk5bfGokJoCJiCFOVg-4z57evovT0ZFuFvN59PY,1549
2
+ sl_shared_assets/ascension_tools.py,sha256=iOnWTTazMuWt1ILjPlrfj9iuQBJ7dlY_8bp7NrH8_XM,15856
3
+ sl_shared_assets/cli.py,sha256=J9zDbDyRVww4CbKhIsm8-7WtYgxrhaThew4uVezADSg,4257
4
+ sl_shared_assets/data_classes.py,sha256=X2_hYp9VrZLIo1shKrgRA-rHm2MVCJHO3fzex1Z7v50,90415
5
+ sl_shared_assets/packaging_tools.py,sha256=LOKCKvT6UD_cidCONaI4ctWyej5zEwwdhhgwYrj60Kg,6746
6
+ sl_shared_assets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ sl_shared_assets/server.py,sha256=VtFwS4PEy24n_pGz9W56zufkZEf_PKxIllP2ZnF5Zgc,13269
8
+ sl_shared_assets/suite2p.py,sha256=sQ5Zj0TJFD-gUHqtWnRvapBpr8QgmaiVil123cWxGxc,20511
9
+ sl_shared_assets/transfer_tools.py,sha256=J26kwOp_NpPSY0-xu5FTw9udte-rm_mW1FJyaTNoqQI,6606
10
+ sl_shared_assets-1.0.0rc10.dist-info/METADATA,sha256=68CckIfNZlF8UZXlBgHLJjiLVkPG1ei_oIs3K0XuJWA,47807
11
+ sl_shared_assets-1.0.0rc10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
+ sl_shared_assets-1.0.0rc10.dist-info/entry_points.txt,sha256=bdnmVAcK3nrKi9QEYeNMrCLFH5LQ4BMBfwbLIgLPtq4,222
13
+ sl_shared_assets-1.0.0rc10.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
14
+ sl_shared_assets-1.0.0rc10.dist-info/RECORD,,
@@ -1,3 +1,4 @@
1
1
  [console_scripts]
2
+ sl-ascend = sl_shared_assets.cli:ascend_tyche_directory
2
3
  sl-generate-credentials = sl_shared_assets.cli:generate_server_credentials_file
3
4
  sl-replace-root = sl_shared_assets.cli:replace_local_root_directory
@@ -1,87 +0,0 @@
1
- from .server import (
2
- Server as Server,
3
- ServerCredentials as ServerCredentials,
4
- )
5
- from .suite2p import (
6
- Main as Main,
7
- FileIO as FileIO,
8
- Output as Output,
9
- Channel2 as Channel2,
10
- NonRigid as NonRigid,
11
- ROIDetection as ROIDetection,
12
- Registration as Registration,
13
- Classification as Classification,
14
- OnePRegistration as OnePRegistration,
15
- SignalExtraction as SignalExtraction,
16
- CellposeDetection as CellposeDetection,
17
- SpikeDeconvolution as SpikeDeconvolution,
18
- Suite2PConfiguration as Suite2PConfiguration,
19
- )
20
- from .data_classes import (
21
- RawData as RawData,
22
- DrugData as DrugData,
23
- ImplantData as ImplantData,
24
- SessionData as SessionData,
25
- SubjectData as SubjectData,
26
- SurgeryData as SurgeryData,
27
- Destinations as Destinations,
28
- InjectionData as InjectionData,
29
- MesoscopeData as MesoscopeData,
30
- ProcedureData as ProcedureData,
31
- ProcessedData as ProcessedData,
32
- PersistentData as PersistentData,
33
- ZaberPositions as ZaberPositions,
34
- ExperimentState as ExperimentState,
35
- MesoscopePositions as MesoscopePositions,
36
- ProjectConfiguration as ProjectConfiguration,
37
- HardwareConfiguration as HardwareConfiguration,
38
- RunTrainingDescriptor as RunTrainingDescriptor,
39
- LickTrainingDescriptor as LickTrainingDescriptor,
40
- ExperimentConfiguration as ExperimentConfiguration,
41
- MesoscopeExperimentDescriptor as MesoscopeExperimentDescriptor,
42
- replace_root_path as replace_root_path,
43
- )
44
- from .transfer_tools import transfer_directory as transfer_directory
45
- from .packaging_tools import calculate_directory_checksum as calculate_directory_checksum
46
-
47
- __all__ = [
48
- "Server",
49
- "ServerCredentials",
50
- "Main",
51
- "FileIO",
52
- "Output",
53
- "Channel2",
54
- "NonRigid",
55
- "ROIDetection",
56
- "Registration",
57
- "Classification",
58
- "OnePRegistration",
59
- "SignalExtraction",
60
- "CellposeDetection",
61
- "SpikeDeconvolution",
62
- "Suite2PConfiguration",
63
- "RawData",
64
- "DrugData",
65
- "ImplantData",
66
- "SessionData",
67
- "SubjectData",
68
- "SurgeryData",
69
- "Destinations",
70
- "InjectionData",
71
- "MesoscopeData",
72
- "ProcedureData",
73
- "ProcessedData",
74
- "PersistentData",
75
- "ZaberPositions",
76
- "ExperimentState",
77
- "MesoscopePositions",
78
- "ProjectConfiguration",
79
- "HardwareConfiguration",
80
- "RunTrainingDescriptor",
81
- "LickTrainingDescriptor",
82
- "ExperimentConfiguration",
83
- "MesoscopeExperimentDescriptor",
84
- "replace_root_path",
85
- "transfer_directory",
86
- "calculate_directory_checksum",
87
- ]
sl_shared_assets/cli.pyi DELETED
@@ -1,17 +0,0 @@
1
- from .server import generate_server_credentials as generate_server_credentials
2
- from .data_classes import replace_root_path as replace_root_path
3
-
4
- def replace_local_root_directory(path: str) -> None:
5
- """Replaces the root directory used to store all lab projects on the local PC with the specified directory.
6
-
7
- To ensure all projects are saved in the same location, this library resolves and saves the absolute path to the
8
- project directory when it is used for the first time. All future projects reuse the same 'root' path. Since this
9
- information is stored in a typically hidden user directory, this CLI can be used to replace the local directory
10
- path, if necessary.
11
- """
12
-
13
- def generate_server_credentials_file(output_directory: str, host: str, username: str, password: str) -> None:
14
- """Generates a new server_credentials.yaml file under the specified directory, using input information.
15
-
16
- This CLI is used during the initial PC setup (typically, VRPC) to allow it to access the lab BioHPC server.
17
- """