sl-shared-assets 1.0.0__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.

Potentially problematic release.


This version of sl-shared-assets might be problematic. Click here for more details.

Files changed (45) hide show
  1. sl_shared_assets-1.0.0/.gitignore +213 -0
  2. sl_shared_assets-1.0.0/LICENSE +674 -0
  3. sl_shared_assets-1.0.0/PKG-INFO +869 -0
  4. sl_shared_assets-1.0.0/README.md +114 -0
  5. sl_shared_assets-1.0.0/docs/Makefile +19 -0
  6. sl_shared_assets-1.0.0/docs/make.bat +35 -0
  7. sl_shared_assets-1.0.0/docs/source/api.rst +59 -0
  8. sl_shared_assets-1.0.0/docs/source/conf.py +50 -0
  9. sl_shared_assets-1.0.0/docs/source/index.rst +19 -0
  10. sl_shared_assets-1.0.0/docs/source/welcome.rst +15 -0
  11. sl_shared_assets-1.0.0/envs/slsa_dev_lin.yml +230 -0
  12. sl_shared_assets-1.0.0/envs/slsa_dev_lin_spec.txt +1811 -0
  13. sl_shared_assets-1.0.0/pyproject.toml +226 -0
  14. sl_shared_assets-1.0.0/src/sl_shared_assets/__init__.py +80 -0
  15. sl_shared_assets-1.0.0/src/sl_shared_assets/__init__.pyi +73 -0
  16. sl_shared_assets-1.0.0/src/sl_shared_assets/cli.py +384 -0
  17. sl_shared_assets-1.0.0/src/sl_shared_assets/cli.pyi +94 -0
  18. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/__init__.py +66 -0
  19. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/__init__.pyi +61 -0
  20. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/configuration_data.py +479 -0
  21. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/configuration_data.pyi +199 -0
  22. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/runtime_data.py +251 -0
  23. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/runtime_data.pyi +145 -0
  24. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/session_data.py +625 -0
  25. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/session_data.pyi +252 -0
  26. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/surgery_data.py +152 -0
  27. sl_shared_assets-1.0.0/src/sl_shared_assets/data_classes/surgery_data.pyi +89 -0
  28. sl_shared_assets-1.0.0/src/sl_shared_assets/py.typed +0 -0
  29. sl_shared_assets-1.0.0/src/sl_shared_assets/server/__init__.py +8 -0
  30. sl_shared_assets-1.0.0/src/sl_shared_assets/server/__init__.pyi +8 -0
  31. sl_shared_assets-1.0.0/src/sl_shared_assets/server/job.py +140 -0
  32. sl_shared_assets-1.0.0/src/sl_shared_assets/server/job.pyi +94 -0
  33. sl_shared_assets-1.0.0/src/sl_shared_assets/server/server.py +214 -0
  34. sl_shared_assets-1.0.0/src/sl_shared_assets/server/server.pyi +95 -0
  35. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/__init__.py +15 -0
  36. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/__init__.pyi +15 -0
  37. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/ascension_tools.py +277 -0
  38. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/ascension_tools.pyi +68 -0
  39. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/packaging_tools.py +148 -0
  40. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/packaging_tools.pyi +56 -0
  41. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/project_management_tools.py +201 -0
  42. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/project_management_tools.pyi +54 -0
  43. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/transfer_tools.py +119 -0
  44. sl_shared_assets-1.0.0/src/sl_shared_assets/tools/transfer_tools.pyi +53 -0
  45. sl_shared_assets-1.0.0/tox.ini +176 -0
@@ -0,0 +1,213 @@
1
+
2
+ # This version of gitignore is designed to work for python projects using C++ computational core. It has been
3
+ # configured, it to exclude certain jetbrains files, but additional configuration may be needed for contributors
4
+ # seeking to use VSCode or other IDE / code editor.
5
+
6
+ # Prerequisites
7
+ *.d
8
+
9
+ # Compiled Object files
10
+ *.slo
11
+ *.lo
12
+ *.o
13
+ *.obj
14
+
15
+ # Precompiled Headers
16
+ *.gch
17
+ *.pch
18
+
19
+ # Compiled Dynamic libraries
20
+ *.so
21
+ *.dylib
22
+ *.dll
23
+
24
+ # Fortran module files
25
+ *.mod
26
+ *.smod
27
+
28
+ # Compiled Static libraries
29
+ *.lai
30
+ *.la
31
+ *.a
32
+ *.lib
33
+
34
+ # Executables
35
+ *.exe
36
+ *.out
37
+ *.app
38
+
39
+ # Platformio files
40
+ *.pio
41
+
42
+ # Byte-compiled / optimized / DLL files
43
+ __pycache__/
44
+ *.py[cod]
45
+ *$py.class
46
+
47
+ # Distribution / packaging
48
+ .Python
49
+ build/
50
+ develop-eggs/
51
+ dist/
52
+ downloads/
53
+ eggs/
54
+ .eggs/
55
+ lib/
56
+ lib64/
57
+ parts/
58
+ sdist/
59
+ var/
60
+ wheels/
61
+ share/python-wheels/
62
+ *.egg-info/
63
+ .installed.cfg
64
+ *.egg
65
+ MANIFEST
66
+
67
+ # PyInstaller
68
+ # Usually these files are written by a python script from a template
69
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
70
+ *.manifest
71
+ *.spec
72
+
73
+ # Installer logs
74
+ pip-log.txt
75
+ pip-delete-this-directory.txt
76
+
77
+ # Unit test / coverage reports
78
+ htmlcov/
79
+ .tox/
80
+ .nox/
81
+ .coverage
82
+ .coverage.*
83
+ .cache
84
+ nosetests.xml
85
+ coverage.xml
86
+ *.cover
87
+ *.py,cover
88
+ .hypothesis/
89
+ .pytest_cache/
90
+ cover/
91
+
92
+ # Translations
93
+ *.mo
94
+ *.pot
95
+
96
+ # Django stuff:
97
+ *.log
98
+ local_settings.py
99
+ db.sqlite3
100
+ db.sqlite3-journal
101
+
102
+ # Flask stuff:
103
+ instance/
104
+ .webassets-cache
105
+
106
+ # Scrapy stuff:
107
+ .scrapy
108
+
109
+ # Sphinx documentation
110
+ docs/_build/
111
+
112
+ # PyBuilder
113
+ .pybuilder/
114
+ target/
115
+
116
+ # Jupyter Notebook
117
+ .ipynb_checkpoints
118
+
119
+ # IPython
120
+ profile_default/
121
+ ipython_config.py
122
+
123
+ # pyenv
124
+ # For a library or package, you might want to ignore these files since the code is
125
+ # intended to run in multiple environments; otherwise, check them in:
126
+ # python-version
127
+
128
+ # pipenv
129
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
130
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
131
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
132
+ # install all needed dependencies.
133
+ #Pipfile.lock
134
+
135
+ # poetry
136
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
137
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
138
+ # commonly ignored for libraries.
139
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
140
+ #poetry.lock
141
+
142
+ # pdm
143
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
144
+ #pdm.lock
145
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
146
+ # in version control.
147
+ # https://pdm.fming.dev/#use-with-ide
148
+ .pdm.toml
149
+
150
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
151
+ __pypackages__/
152
+
153
+ # Celery stuff
154
+ celerybeat-schedule
155
+ celerybeat.pid
156
+
157
+ # SageMath parsed files
158
+ *.sage.py
159
+
160
+ # Environments
161
+ .env
162
+ .venv
163
+ env/
164
+ venv/
165
+ ENV/
166
+ env.bak/
167
+ venv.bak/
168
+
169
+ # Spyder project settings
170
+ .spyderproject
171
+ .spyproject
172
+
173
+ # Rope project settings
174
+ .ropeproject
175
+
176
+ # mkdocs documentation
177
+ /site
178
+
179
+ # mypy
180
+ .mypy_cache/
181
+ .dmypy.json
182
+ dmypy.json
183
+
184
+ # Pyre type checker
185
+ .pyre/
186
+
187
+ # pytype static type analyzer
188
+ .pytype/
189
+
190
+ # Cython debug symbols
191
+ cython_debug/
192
+
193
+ # PyCharm
194
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
195
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
196
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
197
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
198
+ .idea/
199
+
200
+ # OSx
201
+ .DS_Store
202
+
203
+ # Project files that are part of the general Sun Lab C-Python project architecture that should not be uploaded to and
204
+ # from Github
205
+ /cmake-build-debug/
206
+ /reports/
207
+ /docs/source/doxygen/
208
+ /docs/build/
209
+ /stubs/
210
+ /.pypirc
211
+
212
+ # Project: Add any project-specific exclusions here
213
+ /temp