xarray-graph 0.2.4__tar.gz → 2024.9.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.
- xarray_graph-2024.9.1/PKG-INFO +61 -0
- xarray_graph-2024.9.1/README.md +34 -0
- {xarray_graph-0.2.4 → xarray_graph-2024.9.1}/pyproject.toml +28 -20
- xarray_graph-0.2.4/src/xarray_graph/XarrayGraph.py → xarray_graph-2024.9.1/src/xarray_graph/XarrayGraph copy.py +1052 -406
- xarray_graph-2024.9.1/src/xarray_graph/XarrayGraph.py +2677 -0
- {xarray_graph-0.2.4 → xarray_graph-2024.9.1}/src/xarray_graph/__main__.py +10 -10
- xarray_graph-2024.9.1/src/xarray_graph/heka_reader.py +681 -0
- xarray_graph-2024.9.1/src/xarray_graph/io.py +206 -0
- xarray_graph-2024.9.1/tests/heka.dat +0 -0
- xarray_graph-2024.9.1/tests/test_example.py +2 -0
- xarray_graph-0.2.4/PKG-INFO +0 -49
- xarray_graph-0.2.4/README.md +0 -18
- {xarray_graph-0.2.4 → xarray_graph-2024.9.1}/LICENSE +0 -0
- {xarray_graph-0.2.4 → xarray_graph-2024.9.1}/src/xarray_graph/__init__.py +0 -0
- {xarray_graph-0.2.4 → xarray_graph-2024.9.1}/src/xarray_graph/tmp/RegionsManager.py +0 -0
- {xarray_graph-0.2.4 → xarray_graph-2024.9.1}/tests/__init__.py +0 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: xarray-graph
|
|
3
|
+
Version: 2024.9.1
|
|
4
|
+
Summary: PyQt/PySide UI for graphing (x,y) slices of Xarray datasets.
|
|
5
|
+
Keywords: PyQt,PySide,xarray,graph
|
|
6
|
+
Home-page: https://github.com/marcel-goldschen-ohm/xarray-graph
|
|
7
|
+
Author-Email: Marcel Goldschen-Ohm <goldschen-ohm@utexas.edu>
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Project-URL: Homepage, https://github.com/marcel-goldschen-ohm/xarray-graph
|
|
13
|
+
Project-URL: Repository, https://github.com/marcel-goldschen-ohm/xarray-graph
|
|
14
|
+
Project-URL: Issues, https://github.com/marcel-goldschen-ohm/xarray-graph/issues
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Requires-Dist: numpy>=1.26.2
|
|
17
|
+
Requires-Dist: xarray>=2023.12.0
|
|
18
|
+
Requires-Dist: qtpy>=2.4.1
|
|
19
|
+
Requires-Dist: qtawesome>=1.3.0
|
|
20
|
+
Requires-Dist: pyqt-ext>=2024.9.3
|
|
21
|
+
Requires-Dist: pyqtgraph-ext>=2024.9.0
|
|
22
|
+
Requires-Dist: xarray-treeview>=2024.9.1
|
|
23
|
+
Requires-Dist: qtconsole>=5.5.2
|
|
24
|
+
Requires-Dist: scipy>=1.11.4
|
|
25
|
+
Requires-Dist: lmfit>=1.2.2
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# xarray-graph
|
|
29
|
+
PyQt/PySide UI for graphing (x,y) slices of Xarray Datasets in a DataTree.
|
|
30
|
+
|
|
31
|
+

|
|
32
|
+

|
|
33
|
+

|
|
34
|
+

|
|
35
|
+
|
|
36
|
+
- [Install](#install)
|
|
37
|
+
- [Run](#run)
|
|
38
|
+
- [Documentation](#documentation)
|
|
39
|
+
|
|
40
|
+
## Install
|
|
41
|
+
Requires a PyQt package. Should work with PySide6, PyQt6, or PyQt5.
|
|
42
|
+
```shell
|
|
43
|
+
pip install PySide6
|
|
44
|
+
```
|
|
45
|
+
Install latest release version:
|
|
46
|
+
```shell
|
|
47
|
+
pip install xarray-graph
|
|
48
|
+
```
|
|
49
|
+
Or install latest development version:
|
|
50
|
+
```shell
|
|
51
|
+
pip install xarray-graph@git+https://github.com/marcel-goldschen-ohm/xarray-graph
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Run
|
|
55
|
+
Launch the GUI:
|
|
56
|
+
```shell
|
|
57
|
+
xarray-graph
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Documentation
|
|
61
|
+
:construction:
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# xarray-graph
|
|
2
|
+
PyQt/PySide UI for graphing (x,y) slices of Xarray Datasets in a DataTree.
|
|
3
|
+
|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
- [Install](#install)
|
|
10
|
+
- [Run](#run)
|
|
11
|
+
- [Documentation](#documentation)
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
Requires a PyQt package. Should work with PySide6, PyQt6, or PyQt5.
|
|
15
|
+
```shell
|
|
16
|
+
pip install PySide6
|
|
17
|
+
```
|
|
18
|
+
Install latest release version:
|
|
19
|
+
```shell
|
|
20
|
+
pip install xarray-graph
|
|
21
|
+
```
|
|
22
|
+
Or install latest development version:
|
|
23
|
+
```shell
|
|
24
|
+
pip install xarray-graph@git+https://github.com/marcel-goldschen-ohm/xarray-graph
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Run
|
|
28
|
+
Launch the GUI:
|
|
29
|
+
```shell
|
|
30
|
+
xarray-graph
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Documentation
|
|
34
|
+
:construction:
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"pdm-backend",
|
|
4
|
+
]
|
|
5
|
+
build-backend = "pdm.backend"
|
|
6
|
+
|
|
1
7
|
[project]
|
|
2
8
|
name = "xarray-graph"
|
|
3
9
|
description = "PyQt/PySide UI for graphing (x,y) slices of Xarray datasets."
|
|
@@ -5,15 +11,16 @@ dynamic = []
|
|
|
5
11
|
authors = [
|
|
6
12
|
{ name = "Marcel Goldschen-Ohm", email = "goldschen-ohm@utexas.edu" },
|
|
7
13
|
]
|
|
8
|
-
requires-python = ">=3.
|
|
14
|
+
requires-python = ">=3.10"
|
|
9
15
|
dependencies = [
|
|
10
16
|
"numpy>=1.26.2",
|
|
11
17
|
"xarray>=2023.12.0",
|
|
12
18
|
"qtpy>=2.4.1",
|
|
13
19
|
"qtawesome>=1.3.0",
|
|
14
|
-
"pyqt-ext>=
|
|
15
|
-
"pyqtgraph-ext>=
|
|
16
|
-
"xarray-treeview>=
|
|
20
|
+
"pyqt-ext>=2024.9.3",
|
|
21
|
+
"pyqtgraph-ext>=2024.9.0",
|
|
22
|
+
"xarray-treeview>=2024.9.1",
|
|
23
|
+
"qtconsole>=5.5.2",
|
|
17
24
|
"scipy>=1.11.4",
|
|
18
25
|
"lmfit>=1.2.2",
|
|
19
26
|
]
|
|
@@ -29,32 +36,33 @@ classifiers = [
|
|
|
29
36
|
"Intended Audience :: Developers",
|
|
30
37
|
"License :: OSI Approved :: MIT License",
|
|
31
38
|
"Programming Language :: Python :: 3 :: Only",
|
|
32
|
-
"Programming Language :: Python :: 3.9",
|
|
33
|
-
"Programming Language :: Python :: 3.10",
|
|
34
|
-
"Programming Language :: Python :: 3.11",
|
|
35
|
-
"Programming Language :: Python :: 3.12",
|
|
36
|
-
"Programming Language :: Python :: 3.13",
|
|
37
39
|
]
|
|
38
|
-
version = "
|
|
39
|
-
|
|
40
|
-
[project.license]
|
|
41
|
-
text = "MIT"
|
|
40
|
+
version = "2024.9.1"
|
|
42
41
|
|
|
43
42
|
[project.urls]
|
|
44
43
|
homepage = "https://github.com/marcel-goldschen-ohm/xarray-graph"
|
|
45
44
|
repository = "https://github.com/marcel-goldschen-ohm/xarray-graph"
|
|
45
|
+
issues = "https://github.com/marcel-goldschen-ohm/xarray-graph/issues"
|
|
46
46
|
|
|
47
47
|
[project.scripts]
|
|
48
48
|
xarray-graph = "xarray_graph.__main__:main"
|
|
49
49
|
|
|
50
|
-
[build-system]
|
|
51
|
-
requires = [
|
|
52
|
-
"pdm-backend",
|
|
53
|
-
]
|
|
54
|
-
build-backend = "pdm.backend"
|
|
55
|
-
|
|
56
50
|
[tool.pdm]
|
|
57
|
-
|
|
51
|
+
distribution = true
|
|
58
52
|
|
|
59
53
|
[tool.pdm.version]
|
|
60
54
|
source = "scm"
|
|
55
|
+
|
|
56
|
+
[tool.pdm.dev-dependencies]
|
|
57
|
+
dev = [
|
|
58
|
+
"-e pyqt-ext @ file:///${PROJECT_ROOT}/../pyqt-ext",
|
|
59
|
+
"-e pyqtgraph-ext @ file:///${PROJECT_ROOT}/../pyqtgraph-ext",
|
|
60
|
+
"-e xarray-treeview @ file:///${PROJECT_ROOT}/../xarray-treeview",
|
|
61
|
+
]
|
|
62
|
+
lint = [
|
|
63
|
+
"flake8",
|
|
64
|
+
]
|
|
65
|
+
test = [
|
|
66
|
+
"pytest",
|
|
67
|
+
"pytest-cov",
|
|
68
|
+
]
|