napari-plugin-manager 0.1.2__py3-none-any.whl → 0.1.4__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.
- napari_plugin_manager/_tests/test_base_installer_process.py +23 -0
- napari_plugin_manager/_tests/test_installer_process.py +69 -39
- napari_plugin_manager/_tests/test_npe2api.py +1 -1
- napari_plugin_manager/_tests/test_qt_plugin_dialog.py +108 -84
- napari_plugin_manager/_version.py +2 -2
- napari_plugin_manager/base_qt_package_installer.py +629 -0
- napari_plugin_manager/base_qt_plugin_dialog.py +1816 -0
- napari_plugin_manager/npe2api.py +0 -1
- napari_plugin_manager/qt_package_installer.py +29 -605
- napari_plugin_manager/qt_plugin_dialog.py +106 -1359
- {napari_plugin_manager-0.1.2.dist-info → napari_plugin_manager-0.1.4.dist-info}/METADATA +22 -7
- napari_plugin_manager-0.1.4.dist-info/RECORD +22 -0
- {napari_plugin_manager-0.1.2.dist-info → napari_plugin_manager-0.1.4.dist-info}/WHEEL +1 -1
- napari_plugin_manager-0.1.2.dist-info/RECORD +0 -19
- {napari_plugin_manager-0.1.2.dist-info → napari_plugin_manager-0.1.4.dist-info}/LICENSE +0 -0
- {napari_plugin_manager-0.1.2.dist-info → napari_plugin_manager-0.1.4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: napari-plugin-manager
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Install plugins for napari, in napari.
|
|
5
5
|
Author-email: napari team <napari-steering-council@googlegroups.com>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -62,9 +62,16 @@ Requires-Dist: npe2
|
|
|
62
62
|
Requires-Dist: qtpy
|
|
63
63
|
Requires-Dist: superqt
|
|
64
64
|
Requires-Dist: pip
|
|
65
|
+
Requires-Dist: packaging
|
|
65
66
|
Provides-Extra: dev
|
|
66
67
|
Requires-Dist: PyQt5; extra == "dev"
|
|
67
68
|
Requires-Dist: pre-commit; extra == "dev"
|
|
69
|
+
Provides-Extra: testing
|
|
70
|
+
Requires-Dist: flaky; extra == "testing"
|
|
71
|
+
Requires-Dist: pytest; extra == "testing"
|
|
72
|
+
Requires-Dist: pytest-cov; extra == "testing"
|
|
73
|
+
Requires-Dist: pytest-qt; extra == "testing"
|
|
74
|
+
Requires-Dist: virtualenv; extra == "testing"
|
|
68
75
|
Provides-Extra: docs
|
|
69
76
|
Requires-Dist: sphinx>6; extra == "docs"
|
|
70
77
|
Requires-Dist: sphinx-autobuild; extra == "docs"
|
|
@@ -73,12 +80,6 @@ Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
|
73
80
|
Requires-Dist: sphinx-favicon; extra == "docs"
|
|
74
81
|
Requires-Dist: myst-nb; extra == "docs"
|
|
75
82
|
Requires-Dist: napari-sphinx-theme>=0.3.0; extra == "docs"
|
|
76
|
-
Provides-Extra: testing
|
|
77
|
-
Requires-Dist: flaky; extra == "testing"
|
|
78
|
-
Requires-Dist: pytest; extra == "testing"
|
|
79
|
-
Requires-Dist: pytest-cov; extra == "testing"
|
|
80
|
-
Requires-Dist: pytest-qt; extra == "testing"
|
|
81
|
-
Requires-Dist: virtualenv; extra == "testing"
|
|
82
83
|
|
|
83
84
|
# napari-plugin-manager
|
|
84
85
|
|
|
@@ -186,6 +187,20 @@ a restart to be properly configured.
|
|
|
186
187
|
|
|
187
188
|

|
|
188
189
|
|
|
190
|
+
### Installing a plugin via direct entry
|
|
191
|
+
|
|
192
|
+
You can also install a napari plugin or any other package via the direct entry option. The following steps
|
|
193
|
+
correspond to the options and buttons located at the **bottom of the dialog**.
|
|
194
|
+
|
|
195
|
+
1. You can type either the name of the package, a url to the resource or drag and drop a compressed file
|
|
196
|
+
of a previously downloaded package.
|
|
197
|
+
2. Select the tool (`conda` or `pip`) by clicking on the arrow dorpdown of the `Install` button.
|
|
198
|
+
3. Start the installation process by clicking on the `Install` button.
|
|
199
|
+
|
|
200
|
+
You can cancel the process at any time by clicking the `Cancel all` button.
|
|
201
|
+
|
|
202
|
+

|
|
203
|
+
|
|
189
204
|
### Uninstalling a plugin
|
|
190
205
|
|
|
191
206
|
To uninstall a plugin:
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
napari_plugin_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
napari_plugin_manager/_version.py,sha256=9GTNkADgEYZ6fEjCvZZUdKyqxiPIgtskLFZNJz7nq_U,411
|
|
3
|
+
napari_plugin_manager/base_qt_package_installer.py,sha256=XjfI_sqiCIkOLop4scpDio2sf7zIG-LwjrvPIuB4R7Q,20166
|
|
4
|
+
napari_plugin_manager/base_qt_plugin_dialog.py,sha256=RtvkAnPGDkivjihlSAE2zi3rNP-4DjorFh9tSl9t5_k,63834
|
|
5
|
+
napari_plugin_manager/npe2api.py,sha256=vEBKo1JBnPxRoVzMWedODXYNnD5OIfYJM-XeNWm6DsQ,4092
|
|
6
|
+
napari_plugin_manager/qt_package_installer.py,sha256=AcEu3htlXK1FsYdicqtdTCkKF9TN2XPGAIYgEgVZTHM,2821
|
|
7
|
+
napari_plugin_manager/qt_plugin_dialog.py,sha256=oWkaB06oW5SNDtg-XohnC5Aln7CBhzgeG-p6K5DfC8g,10124
|
|
8
|
+
napari_plugin_manager/qt_widgets.py,sha256=O8t5CbN8r_16cQzshyjvhTEYdUcj7OX0-bfYIiN2uSs,356
|
|
9
|
+
napari_plugin_manager/styles.qss,sha256=9ODPba2IorJybWObWoEO9VGq4AO0IYlAa8brN14tgZU,7379
|
|
10
|
+
napari_plugin_manager/utils.py,sha256=wG_lGPaMmbfyH-q7oTWDYSI2iAKiZ3cqxyjlRlbvFJo,753
|
|
11
|
+
napari_plugin_manager/_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
napari_plugin_manager/_tests/conftest.py,sha256=OvzenfBP2oIS6x8ksr9FhPXdsLV3Q_3Kzr6PRJe45Uc,1885
|
|
13
|
+
napari_plugin_manager/_tests/test_base_installer_process.py,sha256=Cv-nBnUeNAX6pYUE1zs38I9vGtCE-ahBN4q-xcBH-pw,561
|
|
14
|
+
napari_plugin_manager/_tests/test_installer_process.py,sha256=-q3u6UqCccWbHXjtWROUikFFONNCW3PRVqXVJUno9pg,11600
|
|
15
|
+
napari_plugin_manager/_tests/test_npe2api.py,sha256=i0W1CrWcRzjL1Rk2WELlelOiBiHbOS37QKpmyaRn1QA,1031
|
|
16
|
+
napari_plugin_manager/_tests/test_qt_plugin_dialog.py,sha256=q6Cj19069KwYwivB-0_sB_64e4ICYoFR_PcjvDwvLts,19520
|
|
17
|
+
napari_plugin_manager/_tests/test_utils.py,sha256=7EilxmDkRjU6UO2AnaqyYovdAs18D0ZA5GCVGN62-3M,720
|
|
18
|
+
napari_plugin_manager-0.1.4.dist-info/LICENSE,sha256=8dAlKbOqTMYe9L-gL_kEx5Xr1Sd0AbaWQDUkpiOp3vI,1506
|
|
19
|
+
napari_plugin_manager-0.1.4.dist-info/METADATA,sha256=Ld1YHwF15gQgkLpOfbbgqqdi19GbF4Oyjgb0cVpCWW0,12782
|
|
20
|
+
napari_plugin_manager-0.1.4.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
21
|
+
napari_plugin_manager-0.1.4.dist-info/top_level.txt,sha256=pmCqLetuumhY1CKSuTZ5eQsitzazrSvc7V_mkugEPTY,22
|
|
22
|
+
napari_plugin_manager-0.1.4.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
napari_plugin_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
napari_plugin_manager/_version.py,sha256=SFCDdrYA67D1Je-jHgVVh4LOopkPvuV6NMtqSJ7Tfhg,411
|
|
3
|
-
napari_plugin_manager/npe2api.py,sha256=lpanAxjpvEfGkHwTwVXmTSXWlMrjBxHOJ-p_-LbTW2o,4093
|
|
4
|
-
napari_plugin_manager/qt_package_installer.py,sha256=WPZZY3BQxH1OHm2-TBLf0-brzqV7Wh_Gnwk9hwFPmtQ,21454
|
|
5
|
-
napari_plugin_manager/qt_plugin_dialog.py,sha256=R2oPapmCdr0HHf3LZDcjKgbWeUFpaR7D3BlrciyI7hg,57035
|
|
6
|
-
napari_plugin_manager/qt_widgets.py,sha256=O8t5CbN8r_16cQzshyjvhTEYdUcj7OX0-bfYIiN2uSs,356
|
|
7
|
-
napari_plugin_manager/styles.qss,sha256=9ODPba2IorJybWObWoEO9VGq4AO0IYlAa8brN14tgZU,7379
|
|
8
|
-
napari_plugin_manager/utils.py,sha256=wG_lGPaMmbfyH-q7oTWDYSI2iAKiZ3cqxyjlRlbvFJo,753
|
|
9
|
-
napari_plugin_manager/_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
napari_plugin_manager/_tests/conftest.py,sha256=OvzenfBP2oIS6x8ksr9FhPXdsLV3Q_3Kzr6PRJe45Uc,1885
|
|
11
|
-
napari_plugin_manager/_tests/test_installer_process.py,sha256=fgO8OwYcCAz-OlGT_1G_eb4B69DPbnQdzjCrwTIeCpE,10523
|
|
12
|
-
napari_plugin_manager/_tests/test_npe2api.py,sha256=_YPo4jaA9cZ9OeeXn8HMJzijQ7OoWXnSiEN81NEzvhI,1031
|
|
13
|
-
napari_plugin_manager/_tests/test_qt_plugin_dialog.py,sha256=GMQjSWFr_Z-mc47nLNcHowR_hNWc2SkKGhqAqJDXZPs,18866
|
|
14
|
-
napari_plugin_manager/_tests/test_utils.py,sha256=7EilxmDkRjU6UO2AnaqyYovdAs18D0ZA5GCVGN62-3M,720
|
|
15
|
-
napari_plugin_manager-0.1.2.dist-info/LICENSE,sha256=8dAlKbOqTMYe9L-gL_kEx5Xr1Sd0AbaWQDUkpiOp3vI,1506
|
|
16
|
-
napari_plugin_manager-0.1.2.dist-info/METADATA,sha256=gJ0PPHYmsRpdBmLr3UMdxqvyI-C60pKY8A8qV0U8DSs,11967
|
|
17
|
-
napari_plugin_manager-0.1.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
18
|
-
napari_plugin_manager-0.1.2.dist-info/top_level.txt,sha256=pmCqLetuumhY1CKSuTZ5eQsitzazrSvc7V_mkugEPTY,22
|
|
19
|
-
napari_plugin_manager-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
{napari_plugin_manager-0.1.2.dist-info → napari_plugin_manager-0.1.4.dist-info}/top_level.txt
RENAMED
|
File without changes
|