Skip to content

Commit

Permalink
Merge pull request #10 from GenevieveBuckley/rename-napari-tiff
Browse files Browse the repository at this point in the history
Rename from napari-tifffile-reader to napari-tiff
  • Loading branch information
jni authored Feb 14, 2024
2 parents 20feb27 + 37fb6fa commit d97830e
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ modification, are permitted provided that the following conditions are met:
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of napari-tifffile-reader nor the names of its
* Neither the name of napari-tiff nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# napari-tifffile-reader
# napari-tiff

[![License](https://img.shields.io/pypi/l/napari-tifffile-reader.svg?color=green)](https://github.com/napari/napari-tifffile-reader/raw/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/napari-tifffile-reader.svg?color=green)](https://pypi.org/project/napari-tifffile-reader)
[![Python Version](https://img.shields.io/pypi/pyversions/napari-tifffile-reader.svg?color=green)](https://python.org)
[![tests](https://github.com/GenevieveBuckley/napari-tifffile-reader/workflows/tests/badge.svg)](https://github.com/GenevieveBuckley/napari-tifffile-reader/actions)
[![codecov](https://codecov.io/gh/GenevieveBuckley/napari-tifffile-reader/branch/master/graph/badge.svg)](https://codecov.io/gh/GenevieveBuckley/napari-tifffile-reader)
[![License](https://img.shields.io/pypi/l/napari-tiff.svg?color=green)](https://github.com/napari/napari-tiff/raw/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/napari-tiff.svg?color=green)](https://pypi.org/project/napari-tiff)
[![Python Version](https://img.shields.io/pypi/pyversions/napari-tiff.svg?color=green)](https://python.org)
[![tests](https://github.com/GenevieveBuckley/napari-tiff/workflows/tests/badge.svg)](https://github.com/GenevieveBuckley/napari-tiff/actions)
[![codecov](https://codecov.io/gh/GenevieveBuckley/napari-tiff/branch/master/graph/badge.svg)](https://codecov.io/gh/GenevieveBuckley/napari-tiff)

A napari plugin for tiff images.

Expand All @@ -22,9 +22,9 @@ https://napari.org/docs/plugins/index.html

## Installation

You can install `napari-tifffile-reader` via [pip]:
You can install `napari-tiff` via [pip]:

pip install napari-tifffile-reader
pip install napari-tiff

## Contributing

Expand All @@ -34,7 +34,7 @@ the coverage at least stays the same before you submit a pull request.
## License

Distributed under the terms of the [BSD-3] license,
"napari-tifffile-reader" is free and open source software
"napari-tiff" is free and open source software

## Issues

Expand All @@ -50,7 +50,7 @@ If you encounter any problems, please [file an issue] along with a detailed desc
[Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0
[Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt
[cookiecutter-napari-plugin]: https://github.com/napari/cookiecutter-napari-plugin
[file an issue]: https://github.com/GenevieveBuckley/napari-tifffile-reader/issues
[file an issue]: https://github.com/GenevieveBuckley/napari-tiff/issues
[napari]: https://github.com/napari/napari
[tox]: https://tox.readthedocs.io/en/latest/
[pip]: https://pypi.org/project/pip/
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Welcome to napari-tifffile-reader
# Welcome to napari-tiff

A napari plugin for tiff images.
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
site_name: napari-tifffile-reader
site_name: napari-tiff
site_description: A napari plugin for tiff images.
site_author: Genevieve Buckley

theme: readthedocs

repo_url: https://github.com/GenevieveBuckley/napari-tifffile-reader
repo_url: https://github.com/GenevieveBuckley/napari-tiff

pages:
- Home: index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__version__ = "unknown"

# replace the asterisk with named imports
from .napari_tifffile_reader import napari_get_reader
from .napari_tiff_reader import napari_get_reader


__all__ = ["napari_get_reader"]
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
import zipfile

import numpy as np
from napari_tifffile_reader import napari_get_reader
from napari_tifffile_reader.napari_tifffile_reader import (imagecodecs_reader,
imagej_reader,
tifffile_reader,
zip_reader)
from napari_tiff import napari_get_reader
from napari_tiff.napari_tiff_reader import (imagecodecs_reader,
imagej_reader,
tifffile_reader,
zip_reader)
import pytest
import tifffile

Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ def read(fname):


# https://github.com/pypa/setuptools_scm
use_scm = {"write_to": "napari_tifffile_reader/_version.py"}
use_scm = {"write_to": "napari_tiff/_version.py"}

setup(
name='napari-tifffile-reader',
name='napari-tiff',
author='Genevieve Buckley',
license='BSD-3',
url='https://github.com/GenevieveBuckley/napari-tifffile-reader',
url='https://github.com/GenevieveBuckley/napari-tiff',
description='A napari reader plugin for tiff images.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
Expand All @@ -53,7 +53,7 @@ def read(fname):
],
entry_points={
'napari.plugin': [
'tifffile = napari_tifffile_reader',
'tifffile = napari_tiff',
],
},
)

0 comments on commit d97830e

Please sign in to comment.