miblab-plot 0.0.1__tar.gz → 0.0.3__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.
- {miblab_plot-0.0.1/src/miblab_plot.egg-info → miblab_plot-0.0.3}/PKG-INFO +7 -2
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/pyproject.toml +8 -2
- miblab_plot-0.0.3/src/miblab_plot/__init__.py +6 -0
- miblab_plot-0.0.3/src/miblab_plot/gui.py +652 -0
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/src/miblab_plot/image_3d.py +138 -10
- miblab_plot-0.0.3/src/miblab_plot/movie.py +79 -0
- miblab_plot-0.0.3/src/miblab_plot/mp4.py +83 -0
- miblab_plot-0.0.3/src/miblab_plot/pvplot.py +364 -0
- {miblab_plot-0.0.1 → miblab_plot-0.0.3/src/miblab_plot.egg-info}/PKG-INFO +7 -2
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/src/miblab_plot.egg-info/SOURCES.txt +4 -0
- miblab_plot-0.0.3/src/miblab_plot.egg-info/requires.txt +9 -0
- miblab_plot-0.0.1/src/miblab_plot/__init__.py +0 -1
- miblab_plot-0.0.1/src/miblab_plot.egg-info/requires.txt +0 -4
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/LICENSE +0 -0
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/README.md +0 -0
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/setup.cfg +0 -0
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/src/miblab_plot.egg-info/dependency_links.txt +0 -0
- {miblab_plot-0.0.1 → miblab_plot-0.0.3}/src/miblab_plot.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: miblab-plot
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Plotting utilities for medical images
|
|
5
5
|
Author-email: Steven Sourbron <s.sourbron@sheffield.ac.uk>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://miblab.org/
|
|
8
|
-
Project-URL: Source Code, https://github.com/openmiblab/miblab-plot
|
|
8
|
+
Project-URL: Source Code, https://github.com/openmiblab/pckg-miblab-plot
|
|
9
9
|
Keywords: python,medical imaging,MRI
|
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -20,6 +20,11 @@ Requires-Dist: pillow
|
|
|
20
20
|
Requires-Dist: numpy
|
|
21
21
|
Requires-Dist: matplotlib
|
|
22
22
|
Requires-Dist: tqdm
|
|
23
|
+
Requires-Dist: pyvista
|
|
24
|
+
Requires-Dist: scikit-image
|
|
25
|
+
Requires-Dist: moviepy
|
|
26
|
+
Requires-Dist: dbdicom
|
|
27
|
+
Requires-Dist: zarr
|
|
23
28
|
Dynamic: license-file
|
|
24
29
|
|
|
25
30
|
# miblab-plot
|
|
@@ -6,13 +6,19 @@ requires = ['setuptools>=61.2']
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "miblab-plot"
|
|
9
|
-
version = "0.0.
|
|
9
|
+
version = "0.0.3"
|
|
10
10
|
dependencies = [
|
|
11
11
|
'pillow',
|
|
12
12
|
'numpy',
|
|
13
13
|
'matplotlib',
|
|
14
14
|
'tqdm',
|
|
15
|
+
'pyvista',
|
|
16
|
+
'scikit-image',
|
|
17
|
+
'moviepy',
|
|
18
|
+
'dbdicom',
|
|
19
|
+
'zarr',
|
|
15
20
|
]
|
|
21
|
+
|
|
16
22
|
# optional information
|
|
17
23
|
description = "Plotting utilities for medical images"
|
|
18
24
|
readme = "README.md"
|
|
@@ -44,7 +50,7 @@ keywords = [
|
|
|
44
50
|
|
|
45
51
|
[project.urls]
|
|
46
52
|
"Homepage" = "https://miblab.org/"
|
|
47
|
-
"Source Code" = "https://github.com/openmiblab/miblab-plot"
|
|
53
|
+
"Source Code" = "https://github.com/openmiblab/pckg-miblab-plot"
|
|
48
54
|
|
|
49
55
|
[tool.setuptools]
|
|
50
56
|
# ...
|