napari-myelin-quantifier 0.1.0__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 (38) hide show
  1. napari_myelin_quantifier-0.1.0/.copier-answers.yml +18 -0
  2. napari_myelin_quantifier-0.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +87 -0
  3. napari_myelin_quantifier-0.1.0/.github/ISSUE_TEMPLATE/documentation.md +11 -0
  4. napari_myelin_quantifier-0.1.0/.github/ISSUE_TEMPLATE/feature_request.md +27 -0
  5. napari_myelin_quantifier-0.1.0/.github/ISSUE_TEMPLATE/task.md +11 -0
  6. napari_myelin_quantifier-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +12 -0
  7. napari_myelin_quantifier-0.1.0/.github/dependabot.yml +25 -0
  8. napari_myelin_quantifier-0.1.0/.github/workflows/test_and_deploy.yml +85 -0
  9. napari_myelin_quantifier-0.1.0/.gitignore +84 -0
  10. napari_myelin_quantifier-0.1.0/.napari-hub/DESCRIPTION.md +9 -0
  11. napari_myelin_quantifier-0.1.0/.napari-hub/config.yml +9 -0
  12. napari_myelin_quantifier-0.1.0/.pre-commit-config.yaml +27 -0
  13. napari_myelin_quantifier-0.1.0/LICENSE +22 -0
  14. napari_myelin_quantifier-0.1.0/MANIFEST.in +5 -0
  15. napari_myelin_quantifier-0.1.0/PKG-INFO +136 -0
  16. napari_myelin_quantifier-0.1.0/README.md +79 -0
  17. napari_myelin_quantifier-0.1.0/pyproject.toml +131 -0
  18. napari_myelin_quantifier-0.1.0/setup.cfg +4 -0
  19. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/__init__.py +8 -0
  20. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/_axon_quant.py +206 -0
  21. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/_reader.py +85 -0
  22. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/_sample_data.py +22 -0
  23. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/_version.py +34 -0
  24. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/_widget.py +152 -0
  25. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/_writer.py +66 -0
  26. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier/napari.yaml +18 -0
  27. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier.egg-info/PKG-INFO +136 -0
  28. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier.egg-info/SOURCES.txt +36 -0
  29. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier.egg-info/dependency_links.txt +1 -0
  30. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier.egg-info/entry_points.txt +2 -0
  31. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier.egg-info/requires.txt +7 -0
  32. napari_myelin_quantifier-0.1.0/src/napari_myelin_quantifier.egg-info/top_level.txt +1 -0
  33. napari_myelin_quantifier-0.1.0/tests/__init__.py +0 -0
  34. napari_myelin_quantifier-0.1.0/tests/test_reader.py +39 -0
  35. napari_myelin_quantifier-0.1.0/tests/test_sample_data.py +7 -0
  36. napari_myelin_quantifier-0.1.0/tests/test_widget.py +66 -0
  37. napari_myelin_quantifier-0.1.0/tests/test_writer.py +7 -0
  38. napari_myelin_quantifier-0.1.0/tox.ini +33 -0
@@ -0,0 +1,18 @@
1
+ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2
+ _commit: v2.0.1
3
+ _src_path: https://github.com/napari/napari-plugin-template
4
+ display_name: Myelin Quantifier
5
+ email: wulinteo.usa2@gmail.com
6
+ full_name: Napari User
7
+ github_repository_url: https://github.com/wulinteousa2-hash/napari-myelin-quantifier
8
+ github_username_or_organization: wulinteousa2-hash
9
+ include_reader_plugin: true
10
+ include_sample_data_plugin: true
11
+ include_widget_plugin: true
12
+ include_writer_plugin: true
13
+ install_dependabot: true
14
+ install_precommit: true
15
+ license: MIT
16
+ module_name: napari_myelin_quantifier
17
+ plugin_name: napari-myelin-quantifier
18
+ short_description: Quantify myelinated axons with label tracking
@@ -0,0 +1,87 @@
1
+ name: "\U0001F41B Bug Report"
2
+ description: Report a bug encountered while using napari-myelin-quantifier
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: "\U0001F41B 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: "\U0001F4A1 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: "\U0001F4A1 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: "\U0001F30E 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: "\U0001F4A1 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: "\U0001F4DA Documentation"
3
+ about: Report an issue with napari-myelin-quantifier 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: "\U0001F680 Feature Request"
3
+ about: Submit a proposal/request for a new napari-myelin-quantifier 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: "\U0001F9F0 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,85 @@
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", "3.13"]
32
+
33
+ steps:
34
+ - uses: actions/checkout@v5
35
+
36
+ - name: Setup python
37
+ uses: astral-sh/setup-uv@v7
38
+ with:
39
+ python-version: ${{ matrix.python-version }}
40
+ activate-environment: "true"
41
+ - name: Install Windows OpenGL
42
+ uses: pyvista/setup-headless-display-action@v4.2
43
+ with:
44
+ qt: true
45
+ wm: herbstluftwm
46
+
47
+
48
+ # note: if you need dependencies from conda, considering using
49
+ # setup-miniconda: https://github.com/conda-incubator/setup-miniconda
50
+ # and
51
+ # tox-conda: https://github.com/tox-dev/tox-conda
52
+ # this runs the platform-specific tests declared in tox.ini
53
+ - name: Test with tox
54
+ run: uvx --with tox-gh-actions tox
55
+ env:
56
+ PLATFORM: ${{ matrix.platform }}
57
+
58
+ - name: Coverage
59
+ uses: codecov/codecov-action@v5
60
+
61
+ build-and-inspect-package:
62
+ name: Build & inspect package.
63
+ runs-on: ubuntu-latest
64
+
65
+ steps:
66
+ - uses: actions/checkout@v4
67
+ - uses: hynek/build-and-inspect-python-package@v2
68
+
69
+ deploy:
70
+ # this will run when you have tagged a commit, starting with "v*"
71
+ # and requires that you have put your twine API key in your
72
+ # github secrets (see readme for details)
73
+ needs: [test, build-and-inspect-package]
74
+ runs-on: ubuntu-latest
75
+ if: contains(github.ref, 'tags')
76
+ permissions:
77
+ id-token: write
78
+ steps:
79
+ - name: Download built artifact to dist/
80
+ uses: actions/download-artifact@v5
81
+ with:
82
+ name: Packages
83
+ path: dist
84
+ - name: Publish to PyPI
85
+ 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.15.0
12
+ hooks:
13
+ - id: ruff
14
+ - repo: https://github.com/psf/black
15
+ rev: 26.1.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,22 @@
1
+
2
+ The MIT License (MIT)
3
+
4
+ Copyright (c) 2026 Napari User
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE 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,136 @@
1
+ Metadata-Version: 2.4
2
+ Name: napari-myelin-quantifier
3
+ Version: 0.1.0
4
+ Summary: Quantify myelinated axons with label tracking
5
+ Author: Napari User
6
+ Author-email: wulinteo.usa2@gmail.com
7
+ License:
8
+ The MIT License (MIT)
9
+
10
+ Copyright (c) 2026 Napari User
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in
20
+ all copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28
+ THE SOFTWARE.
29
+
30
+ Project-URL: Bug Tracker, https://github.com/wulinteousa2-hash/napari-myelin-quantifier/issues
31
+ Project-URL: Documentation, https://github.com/wulinteousa2-hash/napari-myelin-quantifier#README.md
32
+ Project-URL: Source Code, https://github.com/wulinteousa2-hash/napari-myelin-quantifier
33
+ Project-URL: User Support, https://github.com/wulinteousa2-hash/napari-myelin-quantifier/issues
34
+ Classifier: Development Status :: 2 - Pre-Alpha
35
+ Classifier: Framework :: napari
36
+ Classifier: Intended Audience :: Developers
37
+ Classifier: License :: OSI Approved :: MIT License
38
+ Classifier: Operating System :: OS Independent
39
+ Classifier: Programming Language :: Python
40
+ Classifier: Programming Language :: Python :: 3
41
+ Classifier: Programming Language :: Python :: 3 :: Only
42
+ Classifier: Programming Language :: Python :: 3.10
43
+ Classifier: Programming Language :: Python :: 3.11
44
+ Classifier: Programming Language :: Python :: 3.12
45
+ Classifier: Programming Language :: Python :: 3.13
46
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
47
+ Requires-Python: >=3.10
48
+ Description-Content-Type: text/markdown
49
+ License-File: LICENSE
50
+ Requires-Dist: numpy
51
+ Requires-Dist: magicgui
52
+ Requires-Dist: qtpy
53
+ Requires-Dist: scikit-image
54
+ Provides-Extra: all
55
+ Requires-Dist: napari[all]; extra == "all"
56
+ Dynamic: license-file
57
+
58
+ # napari-myelin-quantifier
59
+
60
+ [![License MIT](https://img.shields.io/pypi/l/napari-myelin-quantifier.svg?color=green)](https://github.com/wulinteousa2-hash/napari-myelin-quantifier/raw/main/LICENSE)
61
+ [![PyPI](https://img.shields.io/pypi/v/napari-myelin-quantifier.svg?color=green)](https://pypi.org/project/napari-myelin-quantifier)
62
+ [![Python Version](https://img.shields.io/pypi/pyversions/napari-myelin-quantifier.svg?color=green)](https://python.org)
63
+ [![tests](https://github.com/wulinteousa2-hash/napari-myelin-quantifier/workflows/tests/badge.svg)](https://github.com/wulinteousa2-hash/napari-myelin-quantifier/actions)
64
+ [![codecov](https://codecov.io/gh/wulinteousa2-hash/napari-myelin-quantifier/branch/main/graph/badge.svg)](https://codecov.io/gh/wulinteousa2-hash/napari-myelin-quantifier)
65
+ [![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-myelin-quantifier)](https://napari-hub.org/plugins/napari-myelin-quantifier)
66
+ [![npe2](https://img.shields.io/badge/plugin-npe2-blue?link=https://napari.org/stable/plugins/index.html)](https://napari.org/stable/plugins/index.html)
67
+ [![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-purple.json)](https://github.com/copier-org/copier)
68
+
69
+ Quantify myelinated axons with label tracking
70
+
71
+ ----------------------------------
72
+
73
+ This [napari] plugin was generated with [copier] using the [napari-plugin-template] (None).
74
+
75
+ <!--
76
+ Don't miss the full getting started guide to set up your new package:
77
+ https://github.com/napari/napari-plugin-template#getting-started
78
+
79
+ and review the napari docs for plugin developers:
80
+ https://napari.org/stable/plugins/index.html
81
+ -->
82
+
83
+ ## Installation
84
+
85
+ You can install `napari-myelin-quantifier` via [pip]:
86
+
87
+ ```
88
+ pip install napari-myelin-quantifier
89
+ ```
90
+
91
+ If napari is not already installed, you can install `napari-myelin-quantifier` with napari and Qt via:
92
+
93
+ ```
94
+ pip install "napari-myelin-quantifier[all]"
95
+ ```
96
+
97
+
98
+ To install latest development version :
99
+
100
+ ```
101
+ pip install git+https://github.com/wulinteousa2-hash/napari-myelin-quantifier.git
102
+ ```
103
+
104
+
105
+
106
+ ## Contributing
107
+
108
+ Contributions are very welcome. Tests can be run with [tox], please ensure
109
+ the coverage at least stays the same before you submit a pull request.
110
+
111
+ ## License
112
+
113
+ Distributed under the terms of the [MIT] license,
114
+ "napari-myelin-quantifier" is free and open source software
115
+
116
+ ## Issues
117
+
118
+ If you encounter any problems, please [file an issue] along with a detailed description.
119
+
120
+ [napari]: https://github.com/napari/napari
121
+ [copier]: https://copier.readthedocs.io/en/stable/
122
+ [@napari]: https://github.com/napari
123
+ [MIT]: http://opensource.org/licenses/MIT
124
+ [BSD-3]: http://opensource.org/licenses/BSD-3-Clause
125
+ [GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt
126
+ [GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt
127
+ [Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0
128
+ [Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt
129
+ [napari-plugin-template]: https://github.com/napari/napari-plugin-template
130
+
131
+ [file an issue]: https://github.com/wulinteousa2-hash/napari-myelin-quantifier/issues
132
+
133
+ [napari]: https://github.com/napari/napari
134
+ [tox]: https://tox.readthedocs.io/en/latest/
135
+ [pip]: https://pypi.org/project/pip/
136
+ [PyPI]: https://pypi.org/
@@ -0,0 +1,79 @@
1
+ # napari-myelin-quantifier
2
+
3
+ [![License MIT](https://img.shields.io/pypi/l/napari-myelin-quantifier.svg?color=green)](https://github.com/wulinteousa2-hash/napari-myelin-quantifier/raw/main/LICENSE)
4
+ [![PyPI](https://img.shields.io/pypi/v/napari-myelin-quantifier.svg?color=green)](https://pypi.org/project/napari-myelin-quantifier)
5
+ [![Python Version](https://img.shields.io/pypi/pyversions/napari-myelin-quantifier.svg?color=green)](https://python.org)
6
+ [![tests](https://github.com/wulinteousa2-hash/napari-myelin-quantifier/workflows/tests/badge.svg)](https://github.com/wulinteousa2-hash/napari-myelin-quantifier/actions)
7
+ [![codecov](https://codecov.io/gh/wulinteousa2-hash/napari-myelin-quantifier/branch/main/graph/badge.svg)](https://codecov.io/gh/wulinteousa2-hash/napari-myelin-quantifier)
8
+ [![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-myelin-quantifier)](https://napari-hub.org/plugins/napari-myelin-quantifier)
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
+ [![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-purple.json)](https://github.com/copier-org/copier)
11
+
12
+ Quantify myelinated axons with label tracking
13
+
14
+ ----------------------------------
15
+
16
+ This [napari] plugin was generated with [copier] using the [napari-plugin-template] (None).
17
+
18
+ <!--
19
+ Don't miss the full getting started guide to set up your new package:
20
+ https://github.com/napari/napari-plugin-template#getting-started
21
+
22
+ and review the napari docs for plugin developers:
23
+ https://napari.org/stable/plugins/index.html
24
+ -->
25
+
26
+ ## Installation
27
+
28
+ You can install `napari-myelin-quantifier` via [pip]:
29
+
30
+ ```
31
+ pip install napari-myelin-quantifier
32
+ ```
33
+
34
+ If napari is not already installed, you can install `napari-myelin-quantifier` with napari and Qt via:
35
+
36
+ ```
37
+ pip install "napari-myelin-quantifier[all]"
38
+ ```
39
+
40
+
41
+ To install latest development version :
42
+
43
+ ```
44
+ pip install git+https://github.com/wulinteousa2-hash/napari-myelin-quantifier.git
45
+ ```
46
+
47
+
48
+
49
+ ## Contributing
50
+
51
+ Contributions are very welcome. Tests can be run with [tox], please ensure
52
+ the coverage at least stays the same before you submit a pull request.
53
+
54
+ ## License
55
+
56
+ Distributed under the terms of the [MIT] license,
57
+ "napari-myelin-quantifier" is free and open source software
58
+
59
+ ## Issues
60
+
61
+ If you encounter any problems, please [file an issue] along with a detailed description.
62
+
63
+ [napari]: https://github.com/napari/napari
64
+ [copier]: https://copier.readthedocs.io/en/stable/
65
+ [@napari]: https://github.com/napari
66
+ [MIT]: http://opensource.org/licenses/MIT
67
+ [BSD-3]: http://opensource.org/licenses/BSD-3-Clause
68
+ [GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt
69
+ [GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt
70
+ [Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0
71
+ [Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt
72
+ [napari-plugin-template]: https://github.com/napari/napari-plugin-template
73
+
74
+ [file an issue]: https://github.com/wulinteousa2-hash/napari-myelin-quantifier/issues
75
+
76
+ [napari]: https://github.com/napari/napari
77
+ [tox]: https://tox.readthedocs.io/en/latest/
78
+ [pip]: https://pypi.org/project/pip/
79
+ [PyPI]: https://pypi.org/