-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Martin Schorb
committed
Mar 14, 2024
1 parent
c767850
commit e58b37f
Showing
6 changed files
with
45 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ long_description = file: README.md | |
long_description_content_type = text/markdown | ||
|
||
author = Martin Schorb | ||
author_email = [email protected] | ||
license = MIT | ||
license_files = LICENSE | ||
classifiers = | ||
|
@@ -23,6 +22,12 @@ classifiers = | |
Programming Language :: Python :: 3.10 | ||
Topic :: Scientific/Engineering :: Image Processing | ||
|
||
url = https://github.com/mobie/mobie-napari-bridge | ||
project_urls = | ||
Bug Tracker = https://github.com/mobie/mobie-napari-bridge/issues | ||
Documentation = https://github.com/mobie/mobie-napari-bridge#README.md | ||
Source Code = https://github.com/mobie/mobie-napari-bridge | ||
User Support = https://github.com/mobie/mobie-napari-bridge/issues | ||
|
||
[options] | ||
packages = find: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# launch_napari.py | ||
from napari import Viewer, run | ||
|
||
|
||
viewer = Viewer() | ||
dock_widget, plugin_widget = viewer.window.add_plugin_dock_widget( | ||
"mobie-napari-bridge", "TestBrowse QWidget" | ||
) | ||
# Optional steps to setup your plugin to a state of failure | ||
# E.g. plugin_widget.parameter_name.value = "some value" | ||
# E.g. plugin_widget.button.click() | ||
run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters