arrayview 0.2.2__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.
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: arrayview
3
+ Version: 0.2.2
4
+ Summary: Fast multi-dimensional array viewer
5
+ Project-URL: Home, https://github.com/oscarvanderheide/arrayview
6
+ Project-URL: Source, https://github.com/yourname/arrayview
7
+ Author-email: Oscar <oscarvanderheide@example.com>
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: array,mri,npy,viewer,visualization
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Requires-Python: >=3.12
17
+ Requires-Dist: fastapi>=0.129.0
18
+ Requires-Dist: matplotlib>=3.9.0
19
+ Requires-Dist: nibabel>=5.3.3
20
+ Requires-Dist: numpy>=2.4.2
21
+ Requires-Dist: pillow>=12.1.1
22
+ Requires-Dist: pywebview>=6.1
23
+ Requires-Dist: qmricolors>=0.1.2
24
+ Requires-Dist: uvicorn>=0.41.0
25
+ Requires-Dist: websockets>=14.0
26
+ Requires-Dist: zarr>=2.17
27
+ Description-Content-Type: text/markdown
28
+
29
+ # arrayview
30
+
31
+ A fast, minimal viewer for multi-dimensional arrays, inspired by the great
32
+ [arrShow](https://github.com/tsumpf/arrShow).
33
+
34
+ - CLI and Python useage
35
+ - Inline in Jupyter / vscode interactive window
36
+ - Runs locally, over SSH, and through VS Code tunnels
37
+
38
+ ## CLI
39
+ `uvx arrayview your_array.npy`
40
+
41
+ ## Python
42
+ ```python
43
+ from arrayview import view
44
+ import numpy as np
45
+
46
+ np.random.rand(256,256,32,2)
47
+ view(x)
48
+ ```
49
+
50
+
@@ -0,0 +1,5 @@
1
+ arrayview-0.2.2.dist-info/METADATA,sha256=zCxVQQTpkhEesZpV4-AXSBLsLA790j5SII15gm6nbxM,1387
2
+ arrayview-0.2.2.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
3
+ arrayview-0.2.2.dist-info/entry_points.txt,sha256=vclWElvkHOTg0fLDFXDKDolZTnG-X2KozhTcfq-NFBo,55
4
+ arrayview-0.2.2.dist-info/licenses/LICENSE,sha256=34OivjM9faB2QaPjZpMRTIiSx31V3U9cEyQ6F2k-bH0,1062
5
+ arrayview-0.2.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ arrayview = arrayview._app:arrayview
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Oscar
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.