diff --git a/napari.yaml b/napari.yaml new file mode 100644 index 0000000..38c8ef5 --- /dev/null +++ b/napari.yaml @@ -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 diff --git a/setup.cfg b/setup.cfg index 30ddb6d..3776f8d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,5 @@ [metadata] name = napari-ome-zarr - author = OME Team author_email = ome-team@openmicroscopy.org license = BSD-3 @@ -8,37 +7,41 @@ 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