forked from ome/napari-ome-zarr
-
-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
2 changed files
with
42 additions
and
27 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: napari-ome-zarr | ||
schema_version: 0.1.0 | ||
contributions: | ||
commands: | ||
- id: napari-ome-zarr.get_reader | ||
title: Get Reader | ||
python_name: napari_ome_zarr._reader:napari_get_reader | ||
readers: | ||
- command: napari-ome-zarr.get_reader | ||
filename_patterns: | ||
- ["*.ome.zarr"] | ||
accepts_directories: true |
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,44 +1,47 @@ | ||
[metadata] | ||
name = napari-ome-zarr | ||
|
||
author = OME Team | ||
author_email = [email protected] | ||
license = BSD-3 | ||
url = https://github.com/ome/napari-ome-zarr | ||
description = A reader for zarr backed OME-NGFF images. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Developers | ||
Framework :: napari | ||
Topic :: Software Development :: Testing | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Operating System :: OS Independent | ||
License :: OSI Approved :: BSD License | ||
project_urls = | ||
Bug Tracker = https://github.com/ome/napari-ome-zarr/issues | ||
Documentation = https://github.com/ome/napari-ome-zarr#README.md | ||
Source Code = https://github.com/ome/napari-ome-zarr | ||
User Support = https://github.com/ome/napari-ome-zarr/issues | ||
Twitter = https://twitter.com/openmicroscopy | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Developers | ||
Framework :: napari | ||
Topic :: Software Development :: Testing | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Operating System :: OS Independent | ||
License :: OSI Approved :: BSD License | ||
project_urls = | ||
Bug Tracker = https://github.com/ome/napari-ome-zarr/issues | ||
Documentation = https://github.com/ome/napari-ome-zarr#README.md | ||
Source Code = https://github.com/ome/napari-ome-zarr | ||
User Support = https://github.com/ome/napari-ome-zarr/issues | ||
Twitter = https://twitter.com/openmicroscopy | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.7 | ||
setup_requires = setuptools_scm | ||
# add your package requirements here | ||
install_requires = | ||
napari-plugin-engine>=0.1.4 | ||
ome-zarr>=0.2.0 | ||
numpy | ||
vispy | ||
install_requires = | ||
napari-plugin-engine>=0.1.4 | ||
ome-zarr>=0.2.0 | ||
numpy | ||
vispy | ||
include_package_data = True | ||
|
||
[options.entry_points] | ||
napari.manifest = | ||
napari-ome-zarr = napari_ome_zarr:napari.yaml | ||
|
||
[options.package_data] | ||
napari_ome_zarr = napari.yaml | ||
|
||
[options.entry_points] | ||
napari.plugin = | ||
napari-ome-zarr = napari_ome_zarr |