xarray-graph 0.1.2__tar.gz → 0.2.1__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,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xarray-graph
3
- Version: 0.1.2
3
+ Version: 0.2.1
4
4
  Summary: PyQt/PySide UI for graphing (x,y) slices of Xarray datasets.
5
- Keywords: PyQt PySide xarray graph
5
+ Keywords: PyQt,PySide,xarray,graph
6
6
  Home-page: https://github.com/marcel-goldschen-ohm/xarray-graph
7
7
  Author-Email: Marcel Goldschen-Ohm <goldschen-ohm@utexas.edu>
8
8
  License: MIT
@@ -20,20 +20,30 @@ Project-URL: Repository, https://github.com/marcel-goldschen-ohm/xarray-graph
20
20
  Requires-Python: >=3.9
21
21
  Requires-Dist: numpy>=1.26.2
22
22
  Requires-Dist: xarray>=2023.12.0
23
- Requires-Dist: xarray-tree>=0.1.0
24
23
  Requires-Dist: qtpy>=2.4.1
25
24
  Requires-Dist: qtawesome>=1.3.0
26
- Requires-Dist: pyqt-ext>=1.1.0
27
- Requires-Dist: pyqtgraph-ext>=1.0.0
25
+ Requires-Dist: pyqt-ext>=1.2.0
26
+ Requires-Dist: pyqtgraph-ext>=1.2.0
27
+ Requires-Dist: xarray-treeview>=1.2.0
28
28
  Requires-Dist: scipy>=1.11.4
29
29
  Requires-Dist: lmfit>=1.2.2
30
30
  Description-Content-Type: text/markdown
31
31
 
32
32
  # xarray-graph
33
- PyQt/PySide UI for graphing (x,y) slices of xarray datasets.
33
+ PyQt/PySide UI for graphing (x,y) slices of Xarray datasets.
34
+
35
+ # Install
36
+ Should work with PySide6, PyQt6, or PyQt5.
37
+ ```shell
38
+ pip install PySide6 xarray-graph
39
+ ```
40
+
41
+ # Run
42
+ ```shell
43
+ xarray-graph
44
+ ```
34
45
 
35
46
  # TODO
36
- - named regions
37
- - measurements
38
- - curve fits
39
47
  - i/o
48
+ - tests
49
+ - docs
@@ -0,0 +1,18 @@
1
+ # xarray-graph
2
+ PyQt/PySide UI for graphing (x,y) slices of Xarray datasets.
3
+
4
+ # Install
5
+ Should work with PySide6, PyQt6, or PyQt5.
6
+ ```shell
7
+ pip install PySide6 xarray-graph
8
+ ```
9
+
10
+ # Run
11
+ ```shell
12
+ xarray-graph
13
+ ```
14
+
15
+ # TODO
16
+ - i/o
17
+ - tests
18
+ - docs
@@ -9,11 +9,11 @@ requires-python = ">=3.9"
9
9
  dependencies = [
10
10
  "numpy>=1.26.2",
11
11
  "xarray>=2023.12.0",
12
- "xarray-tree>=0.1.0",
13
12
  "qtpy>=2.4.1",
14
13
  "qtawesome>=1.3.0",
15
- "pyqt-ext>=1.1.0",
16
- "pyqtgraph-ext>=1.0.0",
14
+ "pyqt-ext>=1.2.0",
15
+ "pyqtgraph-ext>=1.2.0",
16
+ "xarray-treeview>=1.2.0",
17
17
  "scipy>=1.11.4",
18
18
  "lmfit>=1.2.2",
19
19
  ]
@@ -35,7 +35,7 @@ classifiers = [
35
35
  "Programming Language :: Python :: 3.12",
36
36
  "Programming Language :: Python :: 3.13",
37
37
  ]
38
- version = "0.1.2"
38
+ version = "0.2.1"
39
39
 
40
40
  [project.license]
41
41
  text = "MIT"
@@ -44,6 +44,9 @@ text = "MIT"
44
44
  homepage = "https://github.com/marcel-goldschen-ohm/xarray-graph"
45
45
  repository = "https://github.com/marcel-goldschen-ohm/xarray-graph"
46
46
 
47
+ [project.scripts]
48
+ xarray-graph = "xarray_graph.__main__:main"
49
+
47
50
  [build-system]
48
51
  requires = [
49
52
  "pdm-backend",