pydisseqt 0.1.4__cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl → 0.1.14__cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Sign up to get free protection for your applications and to get access to all the features.
pydisseqt/__init__.pyi CHANGED
@@ -13,6 +13,7 @@ class RfPulseSample:
13
13
  self.amplitude: float = ...
14
14
  self.phase: float = ...
15
15
  self.frequency: float = ...
16
+ self.shim: list[tuple[float, float]] | None = ...
16
17
 
17
18
 
18
19
  class RfPulseSampleVec:
@@ -20,6 +21,7 @@ class RfPulseSampleVec:
20
21
  self.amplitude: list[float] = ...
21
22
  self.phase: list[float] = ...
22
23
  self.frequency: list[float] = ...
24
+ self.shim: list[list[tuple[float, float]] | None] = ...
23
25
 
24
26
 
25
27
  class GradientSample:
@@ -115,3 +117,5 @@ class Sequence:
115
117
 
116
118
 
117
119
  def load_pulseq(path: str) -> Sequence: ...
120
+
121
+ def load_dsv(path: str, ref_voltage: float, resolution: int | None) -> Sequence: ...
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: pydisseqt
3
+ Version: 0.1.14
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
7
+ License-File: LICENSE
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
+
11
+ Python wrapper around [disseqt](https://github.com/pulseq-frame/disseqt) built using https://github.com/PyO3/maturin
12
+
13
+ # Changelog:
14
+
15
+ - 0.1.14
16
+ - Updated disseqt to support fixed ADC resolution that does not align to grid
17
+ - 0.1.13
18
+ - Updated pulseq-rs for support of shim shape 0
19
+ - 0.1.12
20
+ - Updated typing info
21
+ - 0.1.11
22
+ - Implemented pTx extension to correctly forward through pydisseqt
23
+ - 0.1.10
24
+ - Updated pulseq-rs: can now load .seq files using the rfshim pTx extension
25
+ - 0.1.9
26
+ - Updated disseqt: Now respects ref_voltage for correct units on .dsv import
27
+ - 0.1.8
28
+ - Updated disseqt: Make pulse phase (RFP) file optional as it is not always provided
29
+ - 0.1.5
30
+ - Switched to WIP disseqt that includes a .dsv backend
31
+ - 0.1.4
32
+ - Updated disseqt: allow backwards integration in integrate and integrate_one (t_start >= t_end)
33
+ - 0.1.3
34
+ - Updated disseqt, fixed trap integration bug
35
+ - 0.1.2
36
+ - Updated pulseq-rs: allow empty .seq file sections
37
+ - 0.1.1
38
+ - Updated disseqt, use double precision floats
39
+ - 0.1.0
40
+ - Baseline
41
+
@@ -0,0 +1,8 @@
1
+ pydisseqt-0.1.14.dist-info/METADATA,sha256=22dYWnAL5_3nADKeaQCp5vnAuFuCGZt6oQ6-wg6-e48,1379
2
+ pydisseqt-0.1.14.dist-info/WHEEL,sha256=VzH9mg4U_MnsIKAsa_1TgnHihdmP4xlFBsN4Rq88tNk,129
3
+ pydisseqt-0.1.14.dist-info/licenses/LICENSE,sha256=1shpP5b6mRn1STjctDxMZ3HMCLfJCrkdH0lzSMBkZj4,1072
4
+ pydisseqt/__init__.py,sha256=vPtTfcEL0sG0uHstfYvhLRm1_eYmLNM57olRJPziqc4,119
5
+ pydisseqt/__init__.pyi,sha256=KdxtrmmCSeW_P6GMCtQGjJwR7zX8hML9ECY-sLIHcCA,3536
6
+ pydisseqt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ pydisseqt/pydisseqt.cpython-313-arm-linux-gnueabihf.so,sha256=XV5eTrCsoWl7Y8xT2nk8qEXk7gXsxdlwKSAM0dmsKgI,1152988
8
+ pydisseqt-0.1.14.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.4.0)
2
+ Generator: maturin (1.8.1)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l
@@ -1,29 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pydisseqt
3
- Version: 0.1.4
4
- Classifier: Programming Language :: Rust
5
- Classifier: Programming Language :: Python :: Implementation :: CPython
6
- Classifier: Programming Language :: Python :: Implementation :: PyPy
7
- License-File: LICENSE
8
- Requires-Python: >=3.8
9
- Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
-
11
- Python wrapper around [disseqt](https://github.com/pulseq-frame/disseqt) built using https://github.com/PyO3/maturin
12
-
13
- # Changelog:
14
-
15
- ### 0.1.4
16
- - Updated disseqt: allow backwards integration in integrate and integrate_one (t_start >= t_end)
17
-
18
- ### 0.1.3
19
- - Updated disseqt, fixed trap integration bug
20
-
21
- ### 0.1.2
22
- - Updated pulseq-rs: allow empty .seq file sections
23
-
24
- ### 0.1.1
25
- - Updated disseqt, use double precision floats
26
-
27
- ### 0.1.0
28
- Baseline
29
-
@@ -1,8 +0,0 @@
1
- pydisseqt-0.1.4.dist-info/METADATA,sha256=2Af9Aby89BQtUB-HcN9d1NLcv-NSUYLwARSggvW72Vw,787
2
- pydisseqt-0.1.4.dist-info/WHEEL,sha256=qduISeoEOyXjbyYeJxw9OB8C381JDizn4Te2DQEdo_Y,129
3
- pydisseqt-0.1.4.dist-info/license_files/LICENSE,sha256=1shpP5b6mRn1STjctDxMZ3HMCLfJCrkdH0lzSMBkZj4,1072
4
- pydisseqt/__init__.py,sha256=vPtTfcEL0sG0uHstfYvhLRm1_eYmLNM57olRJPziqc4,119
5
- pydisseqt/__init__.pyi,sha256=7tEWJqTA1MuLqeY4d0ZlxmYZCwKenoAwFNj6OZ-x7D0,3324
6
- pydisseqt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- pydisseqt/pydisseqt.cpython-313-arm-linux-gnueabihf.so,sha256=mLb1Hsvzdb01o-k8uu7IyKVkeC3tp5ho4bmrWjp9lRc,4752404
8
- pydisseqt-0.1.4.dist-info/RECORD,,