sollertia-shared-assets 8.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.
- sollertia_shared_assets-8.0.0/.claude/settings.local.json +102 -0
- sollertia_shared_assets-8.0.0/.gitignore +202 -0
- sollertia_shared_assets-8.0.0/.idea/.gitignore +3 -0
- sollertia_shared_assets-8.0.0/.idea/dictionaries/project.xml +26 -0
- sollertia_shared_assets-8.0.0/.idea/inspectionProfiles/Project_Default.xml +48 -0
- sollertia_shared_assets-8.0.0/.idea/inspectionProfiles/profiles_settings.xml +6 -0
- sollertia_shared_assets-8.0.0/.idea/jsonSchemas.xml +27 -0
- sollertia_shared_assets-8.0.0/.idea/misc.xml +7 -0
- sollertia_shared_assets-8.0.0/.idea/modules.xml +8 -0
- sollertia_shared_assets-8.0.0/.idea/pyLspTools.xml +6 -0
- sollertia_shared_assets-8.0.0/.idea/pyProjectModel.xml +7 -0
- sollertia_shared_assets-8.0.0/.idea/sollertia-shared-assets.iml +11 -0
- sollertia_shared_assets-8.0.0/.idea/vcs.xml +7 -0
- sollertia_shared_assets-8.0.0/CLAUDE.md +263 -0
- sollertia_shared_assets-8.0.0/LICENSE +202 -0
- sollertia_shared_assets-8.0.0/PKG-INFO +479 -0
- sollertia_shared_assets-8.0.0/README.md +446 -0
- sollertia_shared_assets-8.0.0/docs/Makefile +19 -0
- sollertia_shared_assets-8.0.0/docs/make.bat +35 -0
- sollertia_shared_assets-8.0.0/docs/source/api.rst +22 -0
- sollertia_shared_assets-8.0.0/docs/source/conf.py +48 -0
- sollertia_shared_assets-8.0.0/docs/source/index.rst +19 -0
- sollertia_shared_assets-8.0.0/docs/source/welcome.rst +23 -0
- sollertia_shared_assets-8.0.0/envs/slsa_dev_lin.yml +165 -0
- sollertia_shared_assets-8.0.0/envs/slsa_dev_lin_spec.txt +161 -0
- sollertia_shared_assets-8.0.0/envs/slsa_dev_osx.yml +154 -0
- sollertia_shared_assets-8.0.0/envs/slsa_dev_osx_spec.txt +150 -0
- sollertia_shared_assets-8.0.0/envs/slsa_dev_win.yml +157 -0
- sollertia_shared_assets-8.0.0/envs/slsa_dev_win_spec.txt +153 -0
- sollertia_shared_assets-8.0.0/pyproject.toml +233 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/__init__.py +95 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/configuration/__init__.py +49 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/configuration/configuration_utilities.py +387 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/configuration/experiment_configuration.py +72 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/configuration/mesoscope_configuration.py +34 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/configuration/vr_configuration.py +327 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/data_classes/__init__.py +71 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/data_classes/runtime_data.py +196 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/data_classes/session_data.py +635 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/data_classes/session_discovery.py +251 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/data_classes/surgery_data.py +140 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/__init__.py +3 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/cli.py +232 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/configuration_tools.py +680 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/data_tools.py +1007 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/mcp_instance.py +340 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/mcp_server.py +31 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/interfaces/unity_tools.py +359 -0
- sollertia_shared_assets-8.0.0/src/sollertia_shared_assets/py.typed +0 -0
- sollertia_shared_assets-8.0.0/tests/configuration/configuration_utilities_test.py +423 -0
- sollertia_shared_assets-8.0.0/tests/configuration/experiment_configuration_test.py +101 -0
- sollertia_shared_assets-8.0.0/tests/configuration/mesoscope_configuration_test.py +89 -0
- sollertia_shared_assets-8.0.0/tests/configuration/vr_configuration_test.py +393 -0
- sollertia_shared_assets-8.0.0/tests/conftest.py +53 -0
- sollertia_shared_assets-8.0.0/tests/data_classes/runtime_data_test.py +166 -0
- sollertia_shared_assets-8.0.0/tests/data_classes/session_data_test.py +667 -0
- sollertia_shared_assets-8.0.0/tests/data_classes/session_discovery_test.py +289 -0
- sollertia_shared_assets-8.0.0/tests/data_classes/surgery_data_test.py +190 -0
- sollertia_shared_assets-8.0.0/tox.ini +194 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(git mv:*)",
|
|
5
|
+
"Bash(python3 -c \"from sl_shared_assets import MesoscopeSystemConfiguration\")",
|
|
6
|
+
"Bash(PYTHONPATH=src python:*)",
|
|
7
|
+
"Bash(python -c \"from sollertia_shared_assets.data_classes.session_data import SessionData; print\\('OK'\\)\")",
|
|
8
|
+
"Bash(grep:*)",
|
|
9
|
+
"Bash(python:*)",
|
|
10
|
+
"Bash(pip show:*)",
|
|
11
|
+
"Bash(xargs cat:*)",
|
|
12
|
+
"Bash(git stash:*)",
|
|
13
|
+
"Bash(awk 'length > 120 {print NR\": \"length\" chars\"}' src/sollertia_shared_assets/data_classes/dataset_data.py)",
|
|
14
|
+
"Bash(pip install:*)",
|
|
15
|
+
"Bash(unset PYTHONPATH)",
|
|
16
|
+
"Bash(env -u PYTHONPATH python -m pytest tests/data_classes_test.py --import-mode=append --cov=sollertia_shared_assets.data_classes --cov-report=term-missing --no-header -q)",
|
|
17
|
+
"Bash(COVERAGE_CORE=pytrace python -m coverage erase)",
|
|
18
|
+
"Bash(COVERAGE_CORE=pytrace python -m coverage run --source=sollertia_shared_assets.data_classes -m pytest tests/data_classes_test.py --no-header -q)",
|
|
19
|
+
"Bash(wc:*)",
|
|
20
|
+
"Bash(.tox/lint/bin/python:*)",
|
|
21
|
+
"Bash(uv pip:*)",
|
|
22
|
+
"Bash(git --no-pager diff src/sollertia_shared_assets/configuration/configuration_utilities.py)",
|
|
23
|
+
"Read(//tmp/**)",
|
|
24
|
+
"Bash(git --no-pager diff -U3 src/sollertia_shared_assets/configuration/configuration_utilities.py)",
|
|
25
|
+
"Bash(git:*)",
|
|
26
|
+
"Bash(curl -s https://pypi.org/pypi/ataraxis-time/json)",
|
|
27
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('ataraxis-time:', d['info']['version']\\)\")",
|
|
28
|
+
"Bash(curl -s https://pypi.org/pypi/ataraxis-base-utilities/json)",
|
|
29
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('ataraxis-base-utilities:', d['info']['version']\\)\")",
|
|
30
|
+
"Bash(curl -s https://pypi.org/pypi/ataraxis-data-structures/json)",
|
|
31
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('ataraxis-data-structures:', d['info']['version']\\)\")",
|
|
32
|
+
"Bash(curl -s https://pypi.org/pypi/ataraxis-automation/json)",
|
|
33
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('ataraxis-automation:', d['info']['version']\\)\")",
|
|
34
|
+
"Bash(curl -s https://pypi.org/pypi/appdirs/json)",
|
|
35
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('appdirs:', d['info']['version']\\)\")",
|
|
36
|
+
"Bash(curl -s https://pypi.org/pypi/click/json)",
|
|
37
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('click:', d['info']['version']\\)\")",
|
|
38
|
+
"Bash(curl -s https://pypi.org/pypi/polars/json)",
|
|
39
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('polars:', d['info']['version']\\)\")",
|
|
40
|
+
"Bash(curl -s https://pypi.org/pypi/pyarrow/json)",
|
|
41
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('pyarrow:', d['info']['version']\\)\")",
|
|
42
|
+
"Bash(curl -s https://pypi.org/pypi/mcp/json)",
|
|
43
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('mcp:', d['info']['version']\\)\")",
|
|
44
|
+
"Bash(curl -s https://pypi.org/pypi/httpx/json)",
|
|
45
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('httpx:', d['info']['version']\\)\")",
|
|
46
|
+
"Bash(curl -s https://pypi.org/pypi/tox/json)",
|
|
47
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('tox:', d['info']['version']\\)\")",
|
|
48
|
+
"Bash(curl -s https://pypi.org/pypi/tox-uv/json)",
|
|
49
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('tox-uv:', d['info']['version']\\)\")",
|
|
50
|
+
"Bash(curl -s https://pypi.org/pypi/uv/json)",
|
|
51
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('uv:', d['info']['version']\\)\")",
|
|
52
|
+
"Bash(curl -s https://pypi.org/pypi/types-appdirs/json)",
|
|
53
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('types-appdirs:', d['info']['version']\\)\")",
|
|
54
|
+
"Bash(curl -s https://pypi.org/pypi/hatchling/json)",
|
|
55
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('hatchling:', d['info']['version']\\)\")",
|
|
56
|
+
"Bash(curl -sL https://pypi.org/pypi/click/json)",
|
|
57
|
+
"Bash(curl -sL https://pypi.org/pypi/platformdirs/json)",
|
|
58
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\('platformdirs:', d['info']['version']\\)\")",
|
|
59
|
+
"WebFetch(domain:pypi.org)",
|
|
60
|
+
"WebFetch(domain:www.apache.org)",
|
|
61
|
+
"Bash(curl -fsSL https://www.apache.org/licenses/LICENSE-2.0.txt -o /tmp/apache-2.0.txt)",
|
|
62
|
+
"Bash(PYTHONPATH=src .tox/lint/bin/python -m pytest tests/configuration_test.py -k \"server_configuration\" --no-header -q)",
|
|
63
|
+
"Bash(PYTHONPATH=src .tox/lint/bin/python -m pytest tests/configuration_test.py --no-header -q)",
|
|
64
|
+
"Bash(.tox/lint/bin/ruff check:*)",
|
|
65
|
+
"Bash(.tox/lint/bin/ruff format:*)",
|
|
66
|
+
"Bash(find:*)",
|
|
67
|
+
"Read(//home/cyberaxolotl/.claude/plans/**)",
|
|
68
|
+
"Bash(mkdir -p /home/cyberaxolotl/.claude/plans/)",
|
|
69
|
+
"Bash(cat envs/*.yml)",
|
|
70
|
+
"Bash(conda env:*)",
|
|
71
|
+
"Bash(mamba env:*)",
|
|
72
|
+
"Bash(/home/cyberaxolotl/miniforge3/envs/slsa_dev_lin/bin/python -c ':*)",
|
|
73
|
+
"Bash(/home/cyberaxolotl/miniforge3/envs/slsa_dev_lin/bin/python:*)",
|
|
74
|
+
"Bash(PYTHONPATH=src /home/cyberaxolotl/miniforge3/envs/slsa_dev_lin/bin/python -m pytest tests/ -x -q)",
|
|
75
|
+
"Bash(PYTHONPATH=src /home/cyberaxolotl/miniforge3/envs/slsa_dev_lin/bin/python -m pytest tests/ -q --deselect tests/configuration_test.py::test_trial_stimulus_location_precedes_trigger_zone)",
|
|
76
|
+
"Bash(awk '{print length, NR}' src/sollertia_shared_assets/interfaces/mcp_server.py)",
|
|
77
|
+
"Bash(mkdir -p /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/experiment/skills /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/configuration/skills /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/processing/skills)",
|
|
78
|
+
"Bash(cp -r /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-experiment/.claude/skills/acquisition-system-setup /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-experiment/.claude/skills/data-management /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-experiment/.claude/skills/experiment-design /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-experiment/.claude/skills/system-health-check /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-experiment/.claude/skills/modifying-mesoscope-vr-system /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-experiment/.claude/skills/zaber-interface /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/experiment/skills/)",
|
|
79
|
+
"Bash(cp -r /home/cyberaxolotl/Desktop/GitHubRepos/sollertia-unity-tasks/.claude/skills/configuration-verification /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/experiment/skills/)",
|
|
80
|
+
"Bash(rm -rf /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/experiment/skills/experiment-design)",
|
|
81
|
+
"Bash(mv /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/experiment/skills/acquisition-system-setup/MESOSCOPE_REFERENCE.md /home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/configuration/skills/system-configuration/MESOSCOPE_REFERENCE.md)",
|
|
82
|
+
"Read(//home/cyberaxolotl/Desktop/GitHubRepos/sollertia/plugins/experiment/skills/**)",
|
|
83
|
+
"Read(//home/cyberaxolotl/Desktop/GitHubRepos/sollertia/**)",
|
|
84
|
+
"Bash(grep -nE \"experiment-design|/experiment-configuration\" plugins/experiment/skills/pipeline/SKILL.md plugins/experiment/skills/acquisition-system-setup/SKILL.md plugins/experiment/skills/camera-interface/SKILL.md plugins/experiment/skills/microcontroller-interface/SKILL.md plugins/experiment/skills/data-management/SKILL.md plugins/experiment/skills/system-health-check/SKILL.md plugins/experiment/skills/modifying-mesoscope-vr-system/SKILL.md plugins/experiment/skills/zaber-interface/SKILL.md plugins/experiment/skills/configuration-verification/SKILL.md)",
|
|
85
|
+
"Bash(sed 's/\\(.*$//')",
|
|
86
|
+
"Bash(python3:*)",
|
|
87
|
+
"Bash(ls:*)",
|
|
88
|
+
"Bash(read sym:*)",
|
|
89
|
+
"Bash(sed -i -e 's/, error_response = /, error = /g' -e 's/if error_response is not None/if error is not None/g' -e 's/return error_response$/return error/' -e 's/\"error_response\"/\"error\"/g' configuration_tools.py data_tools.py)",
|
|
90
|
+
"Bash(sed -i -e 's/urllib\\\\.error_response/urllib.error/g' -e 's/error_response dict/error dict/g' unity_tools.py)",
|
|
91
|
+
"Bash(read d:*)",
|
|
92
|
+
"Bash(cat /home/cyberaxolotl/Desktop/GitHubRepos/*/mcp.json)",
|
|
93
|
+
"Bash(xargs -I {} bash -c 'echo \"=== {} ===\" && grep \"experiment_name\\\\|segments:\\\\|name:\" {} | head -20')",
|
|
94
|
+
"Bash(xargs dirname:*)",
|
|
95
|
+
"Bash(xargs -I {} bash -c 'ls {}/raw_data/')"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"enabledMcpjsonServers": [
|
|
99
|
+
"sl-migration",
|
|
100
|
+
"sl-shared-assets"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
@@ -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,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="JsonSchemaMappingsProjectConfiguration">
|
|
4
|
+
<state>
|
|
5
|
+
<map>
|
|
6
|
+
<entry key="No JSON schema">
|
|
7
|
+
<value>
|
|
8
|
+
<SchemaInfo>
|
|
9
|
+
<option name="ignoredFile" value="true" />
|
|
10
|
+
<option name="name" value="No JSON schema" />
|
|
11
|
+
<option name="relativePathToSchema" value="" />
|
|
12
|
+
<option name="applicationDefined" value="true" />
|
|
13
|
+
<option name="patterns">
|
|
14
|
+
<list>
|
|
15
|
+
<Item>
|
|
16
|
+
<option name="path" value="file://$PROJECT_DIR$/pyproject.toml" />
|
|
17
|
+
</Item>
|
|
18
|
+
</list>
|
|
19
|
+
</option>
|
|
20
|
+
<option name="isIgnoredFile" value="true" />
|
|
21
|
+
</SchemaInfo>
|
|
22
|
+
</value>
|
|
23
|
+
</entry>
|
|
24
|
+
</map>
|
|
25
|
+
</state>
|
|
26
|
+
</component>
|
|
27
|
+
</project>
|
|
@@ -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/sollertia-shared-assets.iml" filepath="$PROJECT_DIR$/.idea/sollertia-shared-assets.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module external.system.id="pyproject.toml" type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
|
7
|
+
</content>
|
|
8
|
+
<orderEntry type="jdk" jdkName="slsa_dev_win" jdkType="Python SDK" />
|
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
+
</component>
|
|
11
|
+
</module>
|