-
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.
Renamed project to more general name
- Loading branch information
Showing
11 changed files
with
44 additions
and
41 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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[metadata] | ||
name = napari-sp8-tracking | ||
name = napari-trackpy | ||
|
||
description = Plugin to do trackpy particle tracking on SP8 confocal data within napari | ||
description = Plugin to do trackpy particle tracking on microscopy data within napari | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/rhoitink/napari-sp8-tracking | ||
url = https://github.com/rhoitink/napari-trackpy | ||
author = Roy Hoitink | ||
author_email = [email protected] | ||
license = MIT | ||
|
@@ -23,10 +23,10 @@ classifiers = | |
Programming Language :: Python :: 3.10 | ||
Topic :: Scientific/Engineering :: Image Processing | ||
project_urls = | ||
Bug Tracker = https://github.com/rhoitink/napari-sp8-tracking/issues | ||
Documentation = https://github.com/rhoitink/napari-sp8-tracking#README.md | ||
Source Code = https://github.com/rhoitink/napari-sp8-tracking | ||
User Support = https://github.com/rhoitink/napari-sp8-tracking/issues | ||
Bug Tracker = https://github.com/rhoitink/napari-trackpy/issues | ||
Documentation = https://github.com/rhoitink/napari-trackpy#README.md | ||
Source Code = https://github.com/rhoitink/napari-trackpy | ||
User Support = https://github.com/rhoitink/napari-trackpy/issues | ||
|
||
[options] | ||
packages = find: | ||
|
@@ -51,7 +51,7 @@ where = src | |
|
||
[options.entry_points] | ||
napari.manifest = | ||
napari-sp8-tracking = napari_sp8_tracking:napari.yaml | ||
napari-trackpy = napari_trackpy:napari.yaml | ||
|
||
[options.extras_require] | ||
testing = | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
try: | ||
from ._version import version as __version__ | ||
except ImportError: | ||
__version__ = "unknown" | ||
from ._widget import xyz_particle_tracking_settings_widget | ||
|
||
__all__ = [ | ||
"xyz_particle_tracking_settings_widget", | ||
] |
File renamed without changes.
File renamed without changes.
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,10 @@ | ||
name: napari-trackpy | ||
display_name: Particle tracking | ||
contributions: | ||
commands: | ||
- id: napari-trackpy.xyz_particle_tracking_settings_widget | ||
python_name: napari_trackpy:xyz_particle_tracking_settings_widget | ||
title: XYZ particle tracking | ||
widgets: | ||
- command: napari-trackpy.xyz_particle_tracking_settings_widget | ||
display_name: XYZ particle tracking |
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