pyTRACTnmr 0.1.2b2__py3-none-any.whl → 0.1.2b4__py3-none-any.whl
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.
- pyTRACTnmr/main.py +4 -1
- pyTRACTnmr/window.py +6 -3
- {pytractnmr-0.1.2b2.dist-info → pytractnmr-0.1.2b4.dist-info}/METADATA +3 -2
- pytractnmr-0.1.2b4.dist-info/RECORD +10 -0
- pytractnmr-0.1.2b2.dist-info/RECORD +0 -10
- {pytractnmr-0.1.2b2.dist-info → pytractnmr-0.1.2b4.dist-info}/WHEEL +0 -0
- {pytractnmr-0.1.2b2.dist-info → pytractnmr-0.1.2b4.dist-info}/entry_points.txt +0 -0
- {pytractnmr-0.1.2b2.dist-info → pytractnmr-0.1.2b4.dist-info}/licenses/LICENSE +0 -0
pyTRACTnmr/main.py
CHANGED
pyTRACTnmr/window.py
CHANGED
|
@@ -28,9 +28,12 @@ from PySide6.QtCore import Qt, QPoint
|
|
|
28
28
|
|
|
29
29
|
from matplotlib.widgets import SpanSelector
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
import
|
|
33
|
-
|
|
31
|
+
try:
|
|
32
|
+
from widgets import MplCanvas, CustomNavigationToolbar # type: ignore
|
|
33
|
+
import processing # type: ignore
|
|
34
|
+
except ModuleNotFoundError:
|
|
35
|
+
from .widgets import MplCanvas, CustomNavigationToolbar # type: ignore
|
|
36
|
+
from . import processing # type: ignore
|
|
34
37
|
|
|
35
38
|
class TractApp(QMainWindow):
|
|
36
39
|
def __init__(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyTRACTnmr
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2b4
|
|
4
4
|
Summary: A simple gui based application to process and analyse TRACT data from NMR spectroscopy.
|
|
5
5
|
Project-URL: Homepage, https://github.com/debadutta-patra/pyTRACTnmr
|
|
6
6
|
Project-URL: Repository, https://github.com/debadutta-patra/pyTRACTnmr
|
|
@@ -14,6 +14,7 @@ Requires-Dist: pyside6-stubs>=6.7.3.0
|
|
|
14
14
|
Requires-Dist: pyside6>=6.10.2
|
|
15
15
|
Requires-Dist: scipy-stubs>=1.17.0.2
|
|
16
16
|
Requires-Dist: scipy>=1.17.0
|
|
17
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
17
18
|
Description-Content-Type: text/markdown
|
|
18
19
|
|
|
19
20
|
# pyTRACTnmr
|
|
@@ -48,7 +49,7 @@ Description-Content-Type: text/markdown
|
|
|
48
49
|
The fastest way to try pyTRACTnmr without installation is:
|
|
49
50
|
|
|
50
51
|
```bash
|
|
51
|
-
uvx
|
|
52
|
+
uvx pyTRACTnmr
|
|
52
53
|
```
|
|
53
54
|
|
|
54
55
|
#### Using pip
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
pyTRACTnmr/__init__.py,sha256=5rxO0E3s6JQ3X_bBwWIR3tOVEZrS4ZIC-_LZPemSnmQ,24
|
|
2
|
+
pyTRACTnmr/main.py,sha256=n2RQ0oi4WsfPrdJ8IhBWd0iJcDYIDSfISGBhyxMOCqQ,339
|
|
3
|
+
pyTRACTnmr/processing.py,sha256=kH9tW5JhtdIYdoADGhLACX8BNGv4M5H_QX1O73z1I-Q,15466
|
|
4
|
+
pyTRACTnmr/widgets.py,sha256=DlSSWUZ_soVfeXvkm5s26zPKoxREUW-4x5__vvXtpj4,2818
|
|
5
|
+
pyTRACTnmr/window.py,sha256=-SQSR8t2FAxQseOsjm5Q_PKNuRWu2qd5MXSoncHi1QY,30222
|
|
6
|
+
pytractnmr-0.1.2b4.dist-info/METADATA,sha256=RTqLNMa-5eK7ZzRExiAzdCV2UgKK8v3diSN44Ihxkq8,3701
|
|
7
|
+
pytractnmr-0.1.2b4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
8
|
+
pytractnmr-0.1.2b4.dist-info/entry_points.txt,sha256=nub_92b4LtA_hmf3wD1ZQv6rbjBX24fHI0DtbZg5A1M,52
|
|
9
|
+
pytractnmr-0.1.2b4.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
10
|
+
pytractnmr-0.1.2b4.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
pyTRACTnmr/__init__.py,sha256=5rxO0E3s6JQ3X_bBwWIR3tOVEZrS4ZIC-_LZPemSnmQ,24
|
|
2
|
-
pyTRACTnmr/main.py,sha256=YPoQdIN0VIOknnAgWAHBk1ZdefID4NFa8jFY8piOZEM,253
|
|
3
|
-
pyTRACTnmr/processing.py,sha256=kH9tW5JhtdIYdoADGhLACX8BNGv4M5H_QX1O73z1I-Q,15466
|
|
4
|
-
pyTRACTnmr/widgets.py,sha256=DlSSWUZ_soVfeXvkm5s26zPKoxREUW-4x5__vvXtpj4,2818
|
|
5
|
-
pyTRACTnmr/window.py,sha256=9pu6LNJ4mskJYnHWmlk_NdHAAavK84jlqm0WGchNYe8,30061
|
|
6
|
-
pytractnmr-0.1.2b2.dist-info/METADATA,sha256=XTtlQlPSvPzDQpeTwVH-zkVSt5SMLmtmzWMsRomb9YI,3661
|
|
7
|
-
pytractnmr-0.1.2b2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
8
|
-
pytractnmr-0.1.2b2.dist-info/entry_points.txt,sha256=nub_92b4LtA_hmf3wD1ZQv6rbjBX24fHI0DtbZg5A1M,52
|
|
9
|
-
pytractnmr-0.1.2b2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
10
|
-
pytractnmr-0.1.2b2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|