sl-shared-assets 6.0.1rc5__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.
- sl_shared_assets-6.0.1rc5/.gitignore +202 -0
- sl_shared_assets-6.0.1rc5/.idea/.gitignore +3 -0
- sl_shared_assets-6.0.1rc5/.idea/dictionaries/project.xml +26 -0
- sl_shared_assets-6.0.1rc5/.idea/inspectionProfiles/Project_Default.xml +48 -0
- sl_shared_assets-6.0.1rc5/.idea/inspectionProfiles/profiles_settings.xml +6 -0
- sl_shared_assets-6.0.1rc5/.idea/misc.xml +7 -0
- sl_shared_assets-6.0.1rc5/.idea/modules.xml +8 -0
- sl_shared_assets-6.0.1rc5/.idea/sl-shared-assets.iml +12 -0
- sl_shared_assets-6.0.1rc5/.idea/vcs.xml +7 -0
- sl_shared_assets-6.0.1rc5/LICENSE +674 -0
- sl_shared_assets-6.0.1rc5/PKG-INFO +829 -0
- sl_shared_assets-6.0.1rc5/README.md +117 -0
- sl_shared_assets-6.0.1rc5/docs/Makefile +19 -0
- sl_shared_assets-6.0.1rc5/docs/make.bat +35 -0
- sl_shared_assets-6.0.1rc5/docs/source/api.rst +22 -0
- sl_shared_assets-6.0.1rc5/docs/source/conf.py +53 -0
- sl_shared_assets-6.0.1rc5/docs/source/index.rst +19 -0
- sl_shared_assets-6.0.1rc5/docs/source/welcome.rst +16 -0
- sl_shared_assets-6.0.1rc5/envs/slsa_dev_lin.yml +48 -0
- sl_shared_assets-6.0.1rc5/envs/slsa_dev_lin_spec.txt +45 -0
- sl_shared_assets-6.0.1rc5/envs/slsa_dev_osx.yml +39 -0
- sl_shared_assets-6.0.1rc5/envs/slsa_dev_osx_spec.txt +36 -0
- sl_shared_assets-6.0.1rc5/pyproject.toml +187 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/__init__.py +108 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/command_line_interfaces/__init__.py +3 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/command_line_interfaces/configure.py +283 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_classes/__init__.py +101 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_classes/configuration_data.py +713 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_classes/processing_data.py +332 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_classes/runtime_data.py +235 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_classes/session_data.py +556 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_classes/surgery_data.py +138 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_transfer/__init__.py +12 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_transfer/checksum_tools.py +125 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/data_transfer/transfer_tools.py +181 -0
- sl_shared_assets-6.0.1rc5/src/sl_shared_assets/py.typed +0 -0
- sl_shared_assets-6.0.1rc5/tests/data_classes_test.py +3178 -0
- sl_shared_assets-6.0.1rc5/tests/data_transfer_test.py +1095 -0
- sl_shared_assets-6.0.1rc5/tox.ini +182 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# This version of gitignore is designed to work for python projects using C++ computational core. It has been
|
|
2
|
+
# configured, it to exclude certain jetbrains files, but additional configuration may be needed for contributors
|
|
3
|
+
# seeking to use VSCode or other IDE / code editor.
|
|
4
|
+
|
|
5
|
+
# Prerequisites
|
|
6
|
+
*.d
|
|
7
|
+
|
|
8
|
+
# Compiled Object files
|
|
9
|
+
*.slo
|
|
10
|
+
*.lo
|
|
11
|
+
*.o
|
|
12
|
+
*.obj
|
|
13
|
+
|
|
14
|
+
# Precompiled Headers
|
|
15
|
+
*.gch
|
|
16
|
+
*.pch
|
|
17
|
+
|
|
18
|
+
# Compiled Dynamic libraries
|
|
19
|
+
*.so
|
|
20
|
+
*.dylib
|
|
21
|
+
*.dll
|
|
22
|
+
|
|
23
|
+
# Fortran module files
|
|
24
|
+
*.mod
|
|
25
|
+
*.smod
|
|
26
|
+
|
|
27
|
+
# Compiled Static libraries
|
|
28
|
+
*.lai
|
|
29
|
+
*.la
|
|
30
|
+
*.a
|
|
31
|
+
*.lib
|
|
32
|
+
|
|
33
|
+
# Executables
|
|
34
|
+
*.exe
|
|
35
|
+
*.out
|
|
36
|
+
*.app
|
|
37
|
+
|
|
38
|
+
# Platformio files
|
|
39
|
+
*.pio
|
|
40
|
+
|
|
41
|
+
# Byte-compiled / optimized / DLL files
|
|
42
|
+
__pycache__/
|
|
43
|
+
*.py[cod]
|
|
44
|
+
*$py.class
|
|
45
|
+
|
|
46
|
+
# Distribution / packaging
|
|
47
|
+
.Python
|
|
48
|
+
build/
|
|
49
|
+
develop-eggs/
|
|
50
|
+
dist/
|
|
51
|
+
downloads/
|
|
52
|
+
eggs/
|
|
53
|
+
.eggs/
|
|
54
|
+
lib/
|
|
55
|
+
lib64/
|
|
56
|
+
parts/
|
|
57
|
+
sdist/
|
|
58
|
+
var/
|
|
59
|
+
wheels/
|
|
60
|
+
share/python-wheels/
|
|
61
|
+
*.egg-info/
|
|
62
|
+
.installed.cfg
|
|
63
|
+
*.egg
|
|
64
|
+
MANIFEST
|
|
65
|
+
|
|
66
|
+
# PyInstaller
|
|
67
|
+
# Usually these files are written by a python script from a template
|
|
68
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
69
|
+
*.manifest
|
|
70
|
+
*.spec
|
|
71
|
+
|
|
72
|
+
# Installer logs
|
|
73
|
+
pip-log.txt
|
|
74
|
+
pip-delete-this-directory.txt
|
|
75
|
+
|
|
76
|
+
# Unit test / coverage reports
|
|
77
|
+
htmlcov/
|
|
78
|
+
.tox/
|
|
79
|
+
.nox/
|
|
80
|
+
.coverage
|
|
81
|
+
.coverage.*
|
|
82
|
+
.cache
|
|
83
|
+
nosetests.xml
|
|
84
|
+
coverage.xml
|
|
85
|
+
*.cover
|
|
86
|
+
*.py,cover
|
|
87
|
+
.hypothesis/
|
|
88
|
+
.pytest_cache/
|
|
89
|
+
cover/
|
|
90
|
+
|
|
91
|
+
# Translations
|
|
92
|
+
*.mo
|
|
93
|
+
*.pot
|
|
94
|
+
|
|
95
|
+
# Django stuff:
|
|
96
|
+
*.log
|
|
97
|
+
local_settings.py
|
|
98
|
+
db.sqlite3
|
|
99
|
+
db.sqlite3-journal
|
|
100
|
+
|
|
101
|
+
# Flask stuff:
|
|
102
|
+
instance/
|
|
103
|
+
.webassets-cache
|
|
104
|
+
|
|
105
|
+
# Scrapy stuff:
|
|
106
|
+
.scrapy
|
|
107
|
+
|
|
108
|
+
# Sphinx documentation
|
|
109
|
+
docs/_build/
|
|
110
|
+
|
|
111
|
+
# PyBuilder
|
|
112
|
+
.pybuilder/
|
|
113
|
+
target/
|
|
114
|
+
|
|
115
|
+
# Jupyter Notebook
|
|
116
|
+
.ipynb_checkpoints
|
|
117
|
+
|
|
118
|
+
# IPython
|
|
119
|
+
profile_default/
|
|
120
|
+
ipython_config.py
|
|
121
|
+
|
|
122
|
+
# pyenv
|
|
123
|
+
python-version
|
|
124
|
+
|
|
125
|
+
# pipenv
|
|
126
|
+
Pipfile.lock
|
|
127
|
+
|
|
128
|
+
# poetry
|
|
129
|
+
poetry.lock
|
|
130
|
+
|
|
131
|
+
# uv
|
|
132
|
+
uv.lock
|
|
133
|
+
|
|
134
|
+
# pdm
|
|
135
|
+
pdm.lock
|
|
136
|
+
.pdm.toml
|
|
137
|
+
|
|
138
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
139
|
+
__pypackages__/
|
|
140
|
+
|
|
141
|
+
# Celery stuff
|
|
142
|
+
celerybeat-schedule
|
|
143
|
+
celerybeat.pid
|
|
144
|
+
|
|
145
|
+
# SageMath parsed files
|
|
146
|
+
*.sage.py
|
|
147
|
+
|
|
148
|
+
# Environments
|
|
149
|
+
.env
|
|
150
|
+
.venv
|
|
151
|
+
env/
|
|
152
|
+
venv/
|
|
153
|
+
ENV/
|
|
154
|
+
env.bak/
|
|
155
|
+
venv.bak/
|
|
156
|
+
|
|
157
|
+
# Spyder project settings
|
|
158
|
+
.spyderproject
|
|
159
|
+
.spyproject
|
|
160
|
+
|
|
161
|
+
# Rope project settings
|
|
162
|
+
.ropeproject
|
|
163
|
+
|
|
164
|
+
# mkdocs documentation
|
|
165
|
+
/site
|
|
166
|
+
|
|
167
|
+
# mypy
|
|
168
|
+
.mypy_cache/
|
|
169
|
+
.dmypy.json
|
|
170
|
+
dmypy.json
|
|
171
|
+
|
|
172
|
+
# Pyre type checker
|
|
173
|
+
.pyre/
|
|
174
|
+
|
|
175
|
+
# pytype static type analyzer
|
|
176
|
+
.pytype/
|
|
177
|
+
|
|
178
|
+
# Cython debug symbols
|
|
179
|
+
cython_debug/
|
|
180
|
+
|
|
181
|
+
# PyCharm
|
|
182
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
183
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
184
|
+
.idea/**/workspace.xml
|
|
185
|
+
.idea/**/tasks.xml
|
|
186
|
+
.idea/**/usage.statistics.xml
|
|
187
|
+
.idea/**/shelf
|
|
188
|
+
|
|
189
|
+
# OSx
|
|
190
|
+
.DS_Store
|
|
191
|
+
|
|
192
|
+
# Project files that are part of the general Sun Lab C-Python project architecture that should not be uploaded to and
|
|
193
|
+
# from Github
|
|
194
|
+
/cmake-build-debug/
|
|
195
|
+
/reports/
|
|
196
|
+
/docs/source/doxygen/
|
|
197
|
+
/docs/build/
|
|
198
|
+
/stubs/
|
|
199
|
+
/.pypirc
|
|
200
|
+
|
|
201
|
+
# Project: Add any project-specific exclusions here
|
|
202
|
+
/temp
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<component name="ProjectDictionaryState">
|
|
2
|
+
<dictionary name="project">
|
|
3
|
+
<words>
|
|
4
|
+
<w>appauthor</w>
|
|
5
|
+
<w>biohpc</w>
|
|
6
|
+
<w>cbsuwsun</w>
|
|
7
|
+
<w>checksummed</w>
|
|
8
|
+
<w>cybermouse</w>
|
|
9
|
+
<w>doctrees</w>
|
|
10
|
+
<w>envname</w>
|
|
11
|
+
<w>headbar</w>
|
|
12
|
+
<w>hexstring</w>
|
|
13
|
+
<w>inkaros</w>
|
|
14
|
+
<w>kondratyev</w>
|
|
15
|
+
<w>kushaan</w>
|
|
16
|
+
<w>kushaangupta</w>
|
|
17
|
+
<w>loadgroup</w>
|
|
18
|
+
<w>myuser</w>
|
|
19
|
+
<w>nanoliters</w>
|
|
20
|
+
<w>stubgen</w>
|
|
21
|
+
<w>testpass</w>
|
|
22
|
+
<w>testuser</w>
|
|
23
|
+
<w>yeung</w>
|
|
24
|
+
</words>
|
|
25
|
+
</dictionary>
|
|
26
|
+
</component>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="DuplicatedCode" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
|
|
5
|
+
<inspection_tool class="LongLine" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
6
|
+
<inspection_tool class="PyAugmentAssignmentInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
|
|
7
|
+
<inspection_tool class="PyBroadExceptionInspection" enabled="true" level="INFORMATION" enabled_by_default="true" editorAttributes="INFORMATION_ATTRIBUTES" />
|
|
8
|
+
<inspection_tool class="PyPackageRequirementsInspection" enabled="false" level="WARNING" enabled_by_default="false">
|
|
9
|
+
<option name="ignoredPackages">
|
|
10
|
+
<list>
|
|
11
|
+
<option value="pyyaml" />
|
|
12
|
+
</list>
|
|
13
|
+
</option>
|
|
14
|
+
</inspection_tool>
|
|
15
|
+
<inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
16
|
+
<option name="ignoredErrors">
|
|
17
|
+
<list>
|
|
18
|
+
<option value="E402" />
|
|
19
|
+
<option value="E722" />
|
|
20
|
+
<option value="E203" />
|
|
21
|
+
<option value="E501" />
|
|
22
|
+
</list>
|
|
23
|
+
</option>
|
|
24
|
+
</inspection_tool>
|
|
25
|
+
<inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
26
|
+
<option name="ignoredErrors">
|
|
27
|
+
<list>
|
|
28
|
+
<option value="N813" />
|
|
29
|
+
</list>
|
|
30
|
+
</option>
|
|
31
|
+
</inspection_tool>
|
|
32
|
+
<inspection_tool class="PyShadowingBuiltinsInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
33
|
+
<option name="ignoredNames">
|
|
34
|
+
<list>
|
|
35
|
+
<option value="print" />
|
|
36
|
+
</list>
|
|
37
|
+
</option>
|
|
38
|
+
</inspection_tool>
|
|
39
|
+
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
40
|
+
<option name="ignoredIdentifiers">
|
|
41
|
+
<list>
|
|
42
|
+
<option value="write_data" />
|
|
43
|
+
</list>
|
|
44
|
+
</option>
|
|
45
|
+
</inspection_tool>
|
|
46
|
+
<inspection_tool class="StructuralWrap" enabled="false" level="TYPO" enabled_by_default="false" />
|
|
47
|
+
</profile>
|
|
48
|
+
</component>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="Python 3.13" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="slsa_dev_lin" project-jdk-type="Python SDK" />
|
|
7
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/sl-shared-assets.iml" filepath="$PROJECT_DIR$/.idea/sl-shared-assets.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="jdk" jdkName="slsa_dev_lin" jdkType="Python SDK" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
<component name="PyDocumentationSettings">
|
|
9
|
+
<option name="format" value="GOOGLE" />
|
|
10
|
+
<option name="myDocStringFormat" value="Google" />
|
|
11
|
+
</component>
|
|
12
|
+
</module>
|