pyTRACTnmr 0.1.2b2__tar.gz → 0.1.2b4__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.
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/PKG-INFO +3 -2
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/README.md +1 -1
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/pyproject.toml +2 -1
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/src/pyTRACTnmr/main.py +4 -1
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/src/pyTRACTnmr/window.py +6 -3
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/uv.lock +3 -1
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/.gitignore +0 -0
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/.python-version +0 -0
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/LICENSE +0 -0
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/src/pyTRACTnmr/__init__.py +0 -0
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/src/pyTRACTnmr/processing.py +0 -0
- {pytractnmr-0.1.2b2 → pytractnmr-0.1.2b4}/src/pyTRACTnmr/widgets.py +0 -0
|
@@ -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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pyTRACTnmr"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2b4"
|
|
4
4
|
description = "A simple gui based application to process and analyse TRACT data from NMR spectroscopy."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.14"
|
|
@@ -12,6 +12,7 @@ dependencies = [
|
|
|
12
12
|
"pyside6-stubs>=6.7.3.0",
|
|
13
13
|
"scipy>=1.17.0",
|
|
14
14
|
"scipy-stubs>=1.17.0.2",
|
|
15
|
+
"typing-extensions>=4.0.0",
|
|
15
16
|
]
|
|
16
17
|
|
|
17
18
|
[project.urls]
|
|
@@ -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):
|
|
@@ -400,7 +400,7 @@ wheels = [
|
|
|
400
400
|
|
|
401
401
|
[[package]]
|
|
402
402
|
name = "pytractnmr"
|
|
403
|
-
version = "0.1.
|
|
403
|
+
version = "0.1.2b4"
|
|
404
404
|
source = { editable = "." }
|
|
405
405
|
dependencies = [
|
|
406
406
|
{ name = "matplotlib" },
|
|
@@ -410,6 +410,7 @@ dependencies = [
|
|
|
410
410
|
{ name = "pyside6-stubs" },
|
|
411
411
|
{ name = "scipy" },
|
|
412
412
|
{ name = "scipy-stubs" },
|
|
413
|
+
{ name = "typing-extensions" },
|
|
413
414
|
]
|
|
414
415
|
|
|
415
416
|
[package.metadata]
|
|
@@ -421,6 +422,7 @@ requires-dist = [
|
|
|
421
422
|
{ name = "pyside6-stubs", specifier = ">=6.7.3.0" },
|
|
422
423
|
{ name = "scipy", specifier = ">=1.17.0" },
|
|
423
424
|
{ name = "scipy-stubs", specifier = ">=1.17.0.2" },
|
|
425
|
+
{ name = "typing-extensions", specifier = ">=4.0.0" },
|
|
424
426
|
]
|
|
425
427
|
|
|
426
428
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|