napari-piscis 0.1.21__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.
Files changed (29) hide show
  1. napari_piscis-0.1.21/.github/ISSUE_TEMPLATE/bug_report.yml +87 -0
  2. napari_piscis-0.1.21/.github/ISSUE_TEMPLATE/documentation.md +11 -0
  3. napari_piscis-0.1.21/.github/ISSUE_TEMPLATE/feature_request.md +27 -0
  4. napari_piscis-0.1.21/.github/ISSUE_TEMPLATE/task.md +11 -0
  5. napari_piscis-0.1.21/.github/PULL_REQUEST_TEMPLATE.md +12 -0
  6. napari_piscis-0.1.21/.github/dependabot.yml +25 -0
  7. napari_piscis-0.1.21/.github/workflows/test_and_deploy.yml +118 -0
  8. napari_piscis-0.1.21/.gitignore +84 -0
  9. napari_piscis-0.1.21/.napari-hub/DESCRIPTION.md +9 -0
  10. napari_piscis-0.1.21/.napari-hub/config.yml +9 -0
  11. napari_piscis-0.1.21/.pre-commit-config.yaml +27 -0
  12. napari_piscis-0.1.21/LICENSE +21 -0
  13. napari_piscis-0.1.21/MANIFEST.in +5 -0
  14. napari_piscis-0.1.21/PKG-INFO +98 -0
  15. napari_piscis-0.1.21/README.md +46 -0
  16. napari_piscis-0.1.21/pyproject.toml +130 -0
  17. napari_piscis-0.1.21/setup.cfg +4 -0
  18. napari_piscis-0.1.21/src/napari_piscis/__init__.py +1 -0
  19. napari_piscis-0.1.21/src/napari_piscis/_version.py +34 -0
  20. napari_piscis-0.1.21/src/napari_piscis/_widget.py +261 -0
  21. napari_piscis-0.1.21/src/napari_piscis/napari.yaml +10 -0
  22. napari_piscis-0.1.21/src/napari_piscis.egg-info/PKG-INFO +98 -0
  23. napari_piscis-0.1.21/src/napari_piscis.egg-info/SOURCES.txt +27 -0
  24. napari_piscis-0.1.21/src/napari_piscis.egg-info/dependency_links.txt +1 -0
  25. napari_piscis-0.1.21/src/napari_piscis.egg-info/entry_points.txt +2 -0
  26. napari_piscis-0.1.21/src/napari_piscis.egg-info/requires.txt +10 -0
  27. napari_piscis-0.1.21/src/napari_piscis.egg-info/top_level.txt +1 -0
  28. napari_piscis-0.1.21/tests/test_widget.py +528 -0
  29. napari_piscis-0.1.21/tox.ini +33 -0
@@ -0,0 +1,87 @@
1
+ name: "Bug Report"
2
+ description: Report a bug encountered while using piscis-ufish
3
+ labels:
4
+ - "bug"
5
+
6
+ body:
7
+ - type: markdown
8
+ attributes:
9
+ value: |
10
+ Thanks for taking the time to report this issue!
11
+
12
+ Please fill out the sections below to help us reproduce the problem.
13
+
14
+ - type: textarea
15
+ id: bug-report
16
+ attributes:
17
+ label: "Bug Report"
18
+ description: "Please provide a clear and concise description of the bug."
19
+ placeholder: "What went wrong? What did you expect to happen?"
20
+ validations:
21
+ required: true
22
+
23
+ - type: textarea
24
+ id: steps-to-reproduce
25
+ attributes:
26
+ label: "Steps to Reproduce"
27
+ description: "Please provide a minimal code snippet or list of steps to reproduce the bug."
28
+ placeholder: |
29
+ 1. Go to '...'
30
+ 2. Click on '....'
31
+ 3. Scroll down to '....'
32
+ 4. See error
33
+ validations:
34
+ required: true
35
+
36
+ - type: textarea
37
+ id: expected-behavior
38
+ attributes:
39
+ label: "Expected Behavior"
40
+ description: "Please provide a clear and concise description of what you expected to happen."
41
+ placeholder: "What did you expect to happen?"
42
+
43
+ - type: textarea
44
+ id: environment
45
+ attributes:
46
+ label: "Environment"
47
+ description: |
48
+ Please provide detailed information regarding your environment. Please paste the output of `napari --info` here or copy the information from the "napari info" dialog in the napari Help menu.
49
+
50
+ Otherwise, please provide information regarding your operating system (OS), Python version, napari version, Qt backend and version, Qt platform, method of installation, and any other relevant information related to your environment.
51
+
52
+
53
+ placeholder: |
54
+ napari: 0.5.0
55
+ Platform: macOS-13.2.1-arm64-arm-64bit
56
+ System: MacOS 13.2.1
57
+ Python: 3.11.4 (main, Aug 7 2023, 20:34:01) [Clang 14.0.3 (clang-1403.0.22.14.1)]
58
+ Qt: 5.15.10
59
+ PyQt5: 5.15.10
60
+ NumPy: 1.25.1
61
+ SciPy: 1.11.1
62
+ Dask: 2023.7.1
63
+ VisPy: 0.13.0
64
+ magicgui: 0.7.2
65
+ superqt: 0.5.4
66
+ in-n-out: 0.1.8
67
+ app-model: 0.2.0
68
+ npe2: 0.7.2
69
+
70
+ OpenGL:
71
+ - GL version: 2.1 Metal - 83
72
+ - MAX_TEXTURE_SIZE: 16384
73
+
74
+ Screens:
75
+ - screen 1: resolution 1512x982, scale 2.0
76
+
77
+ Settings path:
78
+ - /Users/.../napari/napari_5c6993c40c104085444cfc0c77fa392cb5cb8f56/settings.yaml
79
+ validations:
80
+ required: true
81
+
82
+ - type: textarea
83
+ id: additional-context
84
+ attributes:
85
+ label: "Additional Context"
86
+ description: "Please provide any additional information or context regarding the problem here."
87
+ placeholder: "Add any other context about the problem here."
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: "Documentation"
3
+ about: Report an issue with piscis-ufish documentation
4
+ title: ''
5
+ labels: documentation
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ## Documentation
11
+ <!-- A clear and concise description of the documentation that needs to be created/updated -->
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: "Feature Request"
3
+ about: Submit a proposal/request for a new piscis-ufish feature
4
+ title: ''
5
+ labels: feature
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ## Feature
11
+ <!-- A clear and concise description of the feature proposal -->
12
+
13
+ ## Motivation
14
+
15
+ <!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too -->
16
+
17
+ ## Pitch
18
+
19
+ <!-- A clear and concise description of what you want to happen. -->
20
+
21
+ ## Alternatives
22
+
23
+ <!-- A clear and concise description of any alternative solutions or features you've considered, if any. -->
24
+
25
+ ## Additional context
26
+
27
+ <!-- Add any other context or screenshots about the feature request here. -->
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: "Task"
3
+ about: Maintenance, follow-ups, and other defined to-do items
4
+ title: ''
5
+ labels: task
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ## Task
11
+ <!-- A clear and concise description of the task -->
@@ -0,0 +1,12 @@
1
+ # References and relevant issues
2
+ <!-- What relevant resources were used in the creation of this PR?
3
+ If this PR addresses an existing issue on the repo,
4
+ please link to that issue here as "Closes #(issue-number)"
5
+ If this PR depends on another PR/issue (even in another repo),
6
+ please link to it with "Depends on #PR-number" or "Depends on org/repo#PR-number"
7
+ -->
8
+
9
+ # Description
10
+ <!-- What does this pull request (PR) do? Is it a new feature, a bug fix,
11
+ an improvement, or something else? Why is it necessary? If relevant, please add
12
+ a screenshot or a screen capture: "An image is worth a thousand words!" -->
@@ -0,0 +1,25 @@
1
+ # Dependabot configuration
2
+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates#enabling-github-dependabot-version-updates
3
+ # https://til.simonwillison.net/github/dependabot-python-setup
4
+
5
+ version: 2
6
+ updates:
7
+ # Monitor pip dependencies
8
+ - package-ecosystem: pip
9
+ directory: "/"
10
+ schedule:
11
+ interval: monthly
12
+ groups:
13
+ python-packages:
14
+ patterns:
15
+ - "*"
16
+
17
+ # Monitor GitHub Actions and propose updates for security and maintenance
18
+ - package-ecosystem: github-actions
19
+ directory: "/"
20
+ schedule:
21
+ interval: monthly
22
+ groups:
23
+ github-actions:
24
+ patterns:
25
+ - "*"
@@ -0,0 +1,118 @@
1
+ # This workflows will upload a Python Package using Twine when a release is created
2
+ # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+ name: tests
4
+
5
+ on:
6
+ push:
7
+ branches:
8
+ - main
9
+ - npe2
10
+ tags:
11
+ - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
12
+ pull_request:
13
+ branches:
14
+ - main
15
+ - npe2
16
+ workflow_dispatch:
17
+
18
+ concurrency:
19
+ group: ${{ github.workflow }}-${{ github.ref }}
20
+ cancel-in-progress: true
21
+
22
+ jobs:
23
+ test:
24
+ name: ${{ matrix.platform }} py${{ matrix.python-version }}
25
+ runs-on: ${{ matrix.platform }}
26
+ timeout-minutes: 30
27
+ strategy:
28
+ fail-fast: false
29
+ matrix:
30
+ platform: [ubuntu-latest, windows-latest, macos-latest]
31
+ python-version: ["3.10", "3.11", "3.12"]
32
+
33
+ steps:
34
+ - uses: actions/checkout@v6
35
+ with:
36
+ fetch-depth: 0
37
+
38
+ - name: Setup python
39
+ uses: astral-sh/setup-uv@v7
40
+ with:
41
+ python-version: ${{ matrix.python-version }}
42
+ activate-environment: "true"
43
+ - name: Install Windows OpenGL
44
+ uses: pyvista/setup-headless-display-action@v4.2
45
+ with:
46
+ qt: true
47
+ wm: herbstluftwm
48
+
49
+
50
+ # note: if you need dependencies from conda, considering using
51
+ # setup-miniconda: https://github.com/conda-incubator/setup-miniconda
52
+ # and
53
+ # tox-conda: https://github.com/tox-dev/tox-conda
54
+ # this runs the platform-specific tests declared in tox.ini
55
+ - name: Test with tox
56
+ run: uvx --with tox-gh-actions tox
57
+ env:
58
+ PLATFORM: ${{ matrix.platform }}
59
+
60
+ - name: Coverage
61
+ uses: codecov/codecov-action@v5
62
+
63
+ build-and-inspect-package:
64
+ name: Build & inspect package.
65
+ runs-on: ubuntu-latest
66
+
67
+ steps:
68
+ - uses: actions/checkout@v6
69
+ with:
70
+ fetch-depth: 0
71
+ - name: Install setuptools_scm for debugging
72
+ run: python -m pip install setuptools_scm
73
+ - name: Debug Git and Setuptools_SCM
74
+ run: |
75
+ echo "--- Git Status ---"
76
+ git status
77
+ echo "--- Git Log (last 10 commits) ---"
78
+ git log --oneline -n 10
79
+ echo "--- Git Tags ---"
80
+ git tag -l
81
+ echo "--- Setuptools_SCM Version ---"
82
+ python -c "from setuptools_scm import get_version; print(get_version())"
83
+ - uses: hynek/build-and-inspect-python-package@v2
84
+
85
+ deploy:
86
+ needs: [test, build-and-inspect-package]
87
+ runs-on: ubuntu-latest
88
+ if: startsWith(github.ref, 'refs/tags/v')
89
+ permissions:
90
+ id-token: write
91
+ steps:
92
+ - name: Check out code
93
+ uses: actions/checkout@v6
94
+ with:
95
+ fetch-depth: 0
96
+
97
+ - name: Set up Python
98
+ uses: actions/setup-python@v5
99
+ with:
100
+ python-version: "3.11"
101
+
102
+ - name: Install build backend + setuptools_scm
103
+ run: python -m pip install --upgrade build setuptools setuptools_scm
104
+
105
+ - name: Extract version from tag
106
+ id: version
107
+ run: echo "version=${GITHUB_REF#refs/tags/v}" >> "$GITHUB_OUTPUT"
108
+
109
+ - name: Show version we will use
110
+ run: echo "Using version ${{ steps.version.outputs.version }}"
111
+
112
+ - name: Build package
113
+ env:
114
+ SETUPTOOLS_SCM_PRETEND_VERSION: ${{ steps.version.outputs.version }}
115
+ run: python -m build
116
+
117
+ - name: Publish to PyPI
118
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,84 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ env/
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # PyInstaller
28
+ # Usually these files are written by a python script from a template
29
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
30
+ *.manifest
31
+ *.spec
32
+
33
+ # Installer logs
34
+ pip-log.txt
35
+ pip-delete-this-directory.txt
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .coverage
41
+ .coverage.*
42
+ .cache
43
+ nosetests.xml
44
+ coverage.xml
45
+ *,cover
46
+ .hypothesis/
47
+ .napari_cache
48
+
49
+ # Translations
50
+ *.mo
51
+ *.pot
52
+
53
+ # Django stuff:
54
+ *.log
55
+ local_settings.py
56
+
57
+ # Flask instance folder
58
+ instance/
59
+
60
+ # Sphinx documentation
61
+ docs/_build/
62
+
63
+ # MkDocs documentation
64
+ /site/
65
+
66
+ # PyBuilder
67
+ target/
68
+
69
+ # Pycharm and VSCode
70
+ .idea/
71
+ venv/
72
+ .vscode/
73
+
74
+ # IPython Notebook
75
+ .ipynb_checkpoints
76
+
77
+ # pyenv
78
+ .python-version
79
+
80
+ # OS
81
+ .DS_Store
82
+
83
+ # written by setuptools_scm
84
+ **/_version.py
@@ -0,0 +1,9 @@
1
+ <!-- This file is a placeholder for customizing description of your plugin
2
+ on the napari hub if you wish. The readme file will be used by default if
3
+ you wish not to do any customization for the napari hub listing.
4
+
5
+ If you need some help writing a good description, check out our
6
+ [guide](https://github.com/chanzuckerberg/napari-hub/wiki/Writing-the-Perfect-Description-for-your-Plugin)
7
+ -->
8
+
9
+ The developer has not yet provided a napari-hub specific description.
@@ -0,0 +1,9 @@
1
+ # You may use this file to customize how your plugin page appears
2
+ # on the napari hub: https://www.napari-hub.org/
3
+ # See their wiki for details https://github.com/chanzuckerberg/napari-hub/wiki
4
+
5
+ # Please note that this file should only be used IN ADDITION to entering
6
+ # metadata fields (such as summary, description, authors, and various URLS)
7
+ # in your standard python package metadata (e.g. setup.cfg, setup.py, or
8
+ # pyproject.toml), when you would like those fields to be displayed
9
+ # differently on the hub than in the napari application.
@@ -0,0 +1,27 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v6.0.0
4
+ hooks:
5
+ - id: check-docstring-first
6
+ - id: end-of-file-fixer
7
+ - id: trailing-whitespace
8
+ exclude: ^\.napari-hub/.*
9
+ - id: check-yaml # checks for correct yaml syntax for github actions ex.
10
+ - repo: https://github.com/astral-sh/ruff-pre-commit
11
+ rev: v0.14.6
12
+ hooks:
13
+ - id: ruff
14
+ - repo: https://github.com/psf/black
15
+ rev: 25.11.0
16
+ hooks:
17
+ - id: black
18
+ - repo: https://github.com/tlambert03/napari-plugin-checks
19
+ rev: v0.3.0
20
+ hooks:
21
+ - id: napari-plugin-checks
22
+ # https://mypy.readthedocs.io/en/stable/
23
+ # you may wish to add this as well!
24
+ # - repo: https://github.com/pre-commit/mirrors-mypy
25
+ # rev: v1.9.0
26
+ # hooks:
27
+ # - id: mypy
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023-2024 William Niu
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.
@@ -0,0 +1,5 @@
1
+ include LICENSE
2
+ include README.md
3
+
4
+ recursive-exclude * __pycache__
5
+ recursive-exclude * *.py[co]
@@ -0,0 +1,98 @@
1
+ Metadata-Version: 2.4
2
+ Name: napari-piscis
3
+ Version: 0.1.21
4
+ Summary: Unofficial plugin for Piscis, a deep learning algorithm for spot detection.
5
+ Author-email: Michael Blodgett <michaelablodgett@gmail.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2023-2024 William Niu
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+ Classifier: Development Status :: 2 - Pre-Alpha
28
+ Classifier: Framework :: napari
29
+ Classifier: Intended Audience :: Developers
30
+ Classifier: License :: OSI Approved :: MIT License
31
+ Classifier: Operating System :: OS Independent
32
+ Classifier: Programming Language :: Python
33
+ Classifier: Programming Language :: Python :: 3
34
+ Classifier: Programming Language :: Python :: 3 :: Only
35
+ Classifier: Programming Language :: Python :: 3.10
36
+ Classifier: Programming Language :: Python :: 3.11
37
+ Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
39
+ Requires-Python: <3.14,>=3.10
40
+ Description-Content-Type: text/markdown
41
+ License-File: LICENSE
42
+ Requires-Dist: napari>=0.4.19
43
+ Requires-Dist: magicgui>=0.8
44
+ Requires-Dist: numpy
45
+ Requires-Dist: scikit-image
46
+ Requires-Dist: piscis>=0.2.7
47
+ Requires-Dist: jax<=0.4.30
48
+ Requires-Dist: loguru
49
+ Provides-Extra: all
50
+ Requires-Dist: napari[all]; extra == "all"
51
+ Dynamic: license-file
52
+
53
+ # napari-piscis
54
+
55
+ [![License MIT](https://img.shields.io/pypi/l/napari-piscis.svg?color=green)](https://github.com/p5ithurism/napari-piscis/raw/main/LICENSE)
56
+ [![PyPI](https://img.shields.io/pypi/v/napari-piscis.svg?color=green)](https://pypi.org/project/napari-piscis)
57
+ [![Python Version](https://img.shields.io/pypi/pyversions/napari-piscis.svg?color=green)](https://python.org)
58
+ [![tests](https://github.com/p5ithurism/napari-piscis/workflows/tests/badge.svg)](https://github.com/p5ithurism/napari-piscis/actions)
59
+ [![codecov](https://codecov.io/gh/p5ithurism/napari-piscis/branch/main/graph/badge.svg)](https://codecov.io/gh/p5ithurism/napari-piscis)
60
+ [![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-piscis)](https://napari-hub.org/plugins/napari-piscis)
61
+ [![npe2](https://img.shields.io/badge/plugin-npe2-blue?link=https://napari.org/stable/plugins/index.html)](https://napari.org/stable/plugins/index.html)
62
+
63
+ Unofficial [napari] plugin for [Piscis](https://github.com/zjniu/Piscis), a deep learning algorithm for spot detection.
64
+
65
+ ## Installation
66
+
67
+ You can install `napari-piscis` via [pip]:
68
+
69
+ ```
70
+ pip install napari-piscis
71
+ ```
72
+ Or within the napari GUI via the Plugin Manager.
73
+
74
+ To install latest development version:
75
+ ```
76
+ pip install git+https://github.com/p5ithurism/napari-piscis.git
77
+ ```
78
+ ## Contributing
79
+
80
+ Contributions are very welcome. Tests can be run with [tox], please ensure
81
+ the coverage at least stays the same before you submit a pull request.
82
+
83
+ ## Issues
84
+
85
+ If you encounter any problems, please [file an issue](https://github.com/p5ithurism/napari-piscis/issues/new/choose) along with a detailed description.
86
+
87
+ ## License
88
+
89
+ Distributed under the terms of the [MIT] license, "napari-piscis" is free and open source software
90
+
91
+ [napari]: https://github.com/napari/napari
92
+ [@napari]: https://github.com/napari
93
+ [MIT]: http://opensource.org/licenses/MIT
94
+ [napari-plugin-template]: https://github.com/napari/napari-plugin-template
95
+
96
+ [tox]: https://tox.readthedocs.io/en/latest/
97
+ [pip]: https://pypi.org/project/pip/
98
+ [PyPI]: https://pypi.org/
@@ -0,0 +1,46 @@
1
+ # napari-piscis
2
+
3
+ [![License MIT](https://img.shields.io/pypi/l/napari-piscis.svg?color=green)](https://github.com/p5ithurism/napari-piscis/raw/main/LICENSE)
4
+ [![PyPI](https://img.shields.io/pypi/v/napari-piscis.svg?color=green)](https://pypi.org/project/napari-piscis)
5
+ [![Python Version](https://img.shields.io/pypi/pyversions/napari-piscis.svg?color=green)](https://python.org)
6
+ [![tests](https://github.com/p5ithurism/napari-piscis/workflows/tests/badge.svg)](https://github.com/p5ithurism/napari-piscis/actions)
7
+ [![codecov](https://codecov.io/gh/p5ithurism/napari-piscis/branch/main/graph/badge.svg)](https://codecov.io/gh/p5ithurism/napari-piscis)
8
+ [![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-piscis)](https://napari-hub.org/plugins/napari-piscis)
9
+ [![npe2](https://img.shields.io/badge/plugin-npe2-blue?link=https://napari.org/stable/plugins/index.html)](https://napari.org/stable/plugins/index.html)
10
+
11
+ Unofficial [napari] plugin for [Piscis](https://github.com/zjniu/Piscis), a deep learning algorithm for spot detection.
12
+
13
+ ## Installation
14
+
15
+ You can install `napari-piscis` via [pip]:
16
+
17
+ ```
18
+ pip install napari-piscis
19
+ ```
20
+ Or within the napari GUI via the Plugin Manager.
21
+
22
+ To install latest development version:
23
+ ```
24
+ pip install git+https://github.com/p5ithurism/napari-piscis.git
25
+ ```
26
+ ## Contributing
27
+
28
+ Contributions are very welcome. Tests can be run with [tox], please ensure
29
+ the coverage at least stays the same before you submit a pull request.
30
+
31
+ ## Issues
32
+
33
+ If you encounter any problems, please [file an issue](https://github.com/p5ithurism/napari-piscis/issues/new/choose) along with a detailed description.
34
+
35
+ ## License
36
+
37
+ Distributed under the terms of the [MIT] license, "napari-piscis" is free and open source software
38
+
39
+ [napari]: https://github.com/napari/napari
40
+ [@napari]: https://github.com/napari
41
+ [MIT]: http://opensource.org/licenses/MIT
42
+ [napari-plugin-template]: https://github.com/napari/napari-plugin-template
43
+
44
+ [tox]: https://tox.readthedocs.io/en/latest/
45
+ [pip]: https://pypi.org/project/pip/
46
+ [PyPI]: https://pypi.org/