Skip to content

Commit

Permalink
Convert to npe2 (Fix ome#27 and ome#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Apr 13, 2022
1 parent 1cd5e1e commit a565fbe
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 27 deletions.
12 changes: 12 additions & 0 deletions napari.yaml
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
57 changes: 30 additions & 27 deletions setup.cfg
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

0 comments on commit a565fbe

Please sign in to comment.