seqeyes-python 0.2.13__tar.gz → 0.3.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.
- seqeyes_python-0.3.0/.gitignore +22 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/PKG-INFO +1 -1
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/pyproject.toml +1 -1
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/src/seqeyes/__init__.py +1 -1
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/src/seqeyes/resources/pulseq-bundle.js +1068 -182
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/src/seqeyes/resources/webview-bundle.js +2958 -236
- seqeyes_python-0.2.13/.gitignore +0 -18
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/README.md +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/examples/demo.ipynb +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/examples/demo.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/src/seqeyes/_plot.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/src/seqeyes/_renderer.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/src/seqeyes/resources/viewer.html +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/conftest.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/debug_full.html +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/debug_minimal.html +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/debug_viewer.html +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/debug_viewer.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/integration_test.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/test_plot.py +0 -0
- {seqeyes_python-0.2.13 → seqeyes_python-0.3.0}/tests/test_renderer.py +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
node_modules/
|
|
2
|
+
out/
|
|
3
|
+
*.vsix
|
|
4
|
+
*.mltbx
|
|
5
|
+
out/
|
|
6
|
+
dist/
|
|
7
|
+
*.vsix
|
|
8
|
+
*.mltbx
|
|
9
|
+
# Real scanner ASC profiles are vendor configuration data and must never be
|
|
10
|
+
# committed. The only exception is test/asc/, whose files are synthetic,
|
|
11
|
+
# hand-written for tests, and documented as such in test/asc/README.md.
|
|
12
|
+
*.asc
|
|
13
|
+
!test/asc/*.asc
|
|
14
|
+
.vscode-test/
|
|
15
|
+
.vscode/
|
|
16
|
+
test-results/
|
|
17
|
+
playwright-report/
|
|
18
|
+
performance-results/
|
|
19
|
+
matlab/pulseq-bundle.js
|
|
20
|
+
.DS_Store
|
|
21
|
+
__pycache__/
|
|
22
|
+
.pytest_cache/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: seqeyes-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Interactive Pulseq MRI sequence viewer for Jupyter — lightweight, beautiful, replaces seq.plot() in pypulseq.
|
|
5
5
|
Project-URL: Homepage, https://github.com/bughht/seqeyes_plugin
|
|
6
6
|
Project-URL: Repository, https://github.com/bughht/seqeyes_plugin
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "seqeyes-python"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.3.0"
|
|
8
8
|
description = "Interactive Pulseq MRI sequence viewer for Jupyter — lightweight, beautiful, replaces seq.plot() in pypulseq."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|