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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyTRACTnmr
3
- Version: 0.1.2b2
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 pytractnmr
52
+ uvx pyTRACTnmr
52
53
  ```
53
54
 
54
55
  #### Using pip
@@ -30,7 +30,7 @@
30
30
  The fastest way to try pyTRACTnmr without installation is:
31
31
 
32
32
  ```bash
33
- uvx pytractnmr
33
+ uvx pyTRACTnmr
34
34
  ```
35
35
 
36
36
  #### Using pip
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyTRACTnmr"
3
- version = "0.1.2b2"
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]
@@ -1,7 +1,10 @@
1
1
  import sys
2
2
  from PySide6.QtWidgets import QApplication
3
3
 
4
- from window import TractApp # type: ignore
4
+ try:
5
+ from window import TractApp # type: ignore
6
+ except ModuleNotFoundError:
7
+ from .window import TractApp # type: ignore
5
8
 
6
9
 
7
10
  def main():
@@ -28,9 +28,12 @@ from PySide6.QtCore import Qt, QPoint
28
28
 
29
29
  from matplotlib.widgets import SpanSelector
30
30
 
31
- from widgets import MplCanvas, CustomNavigationToolbar # type: ignore
32
- import processing # type: ignore
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.2b2"
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