Skip to content

Commit

Permalink
Update project files
Browse files Browse the repository at this point in the history
  • Loading branch information
rutgerkok committed Jul 15, 2024
1 parent de2c914 commit 1115170
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 87 deletions.
42 changes: 5 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
# napari-organoidtracker

[![License GNU GPL v3.0](https://img.shields.io/pypi/l/napari-organoidtracker.svg?color=green)](https://github.com/RodriguezColmanLab/napari-organoidtracker/raw/main/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/napari-organoidtracker.svg?color=green)](https://pypi.org/project/napari-organoidtracker)
[![Python Version](https://img.shields.io/pypi/pyversions/napari-organoidtracker.svg?color=green)](https://python.org)
[![tests](https://github.com/RodriguezColmanLab/napari-organoidtracker/workflows/tests/badge.svg)](https://github.com/RodriguezColmanLab/napari-organoidtracker/actions)
[![codecov](https://codecov.io/gh/RodriguezColmanLab/napari-organoidtracker/branch/main/graph/badge.svg)](https://codecov.io/gh/RodriguezColmanLab/napari-organoidtracker)
[![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-organoidtracker)](https://napari-hub.org/plugins/napari-organoidtracker)
Allows you to load OrganoidTracker files into Napari. Right now, only the tracks can be loaded, position metadata is ignored. Feel free to contribute to the project.

Allows you to load OrganoidTracker tracking files into Napari

----------------------------------

This [napari] plugin was generated with [copier] using the [napari-plugin-template].
The plugin is only for viewing OrganoidTracker data, you cannot track new data with it or edit existing data. For that, you'll need to use the OrganoidTracker software itself, which can be found [here](https://github.com/jvzonlab/OrganoidTracker).

<!--
Don't miss the full getting started guide to set up your new package:
Expand All @@ -23,39 +14,16 @@ https://napari.org/stable/plugins/index.html

## Installation

You can install `napari-organoidtracker` via [pip]:
You can install `napari-organoidtracker` via `pip`:

pip install napari-organoidtracker




## Contributing

Contributions are very welcome. Tests can be run with [tox], please ensure
the coverage at least stays the same before you submit a pull request.

## License

Distributed under the terms of the [GNU GPL v3.0] license,
Distributed under the terms of the [GNU GPL v3.0](LICENSE) license,
"napari-organoidtracker" is free and open source software

## Issues

If you encounter any problems, please [file an issue] along with a detailed description.

[napari]: https://github.com/napari/napari
[copier]: https://copier.readthedocs.io/en/stable/
[@napari]: https://github.com/napari
[MIT]: http://opensource.org/licenses/MIT
[BSD-3]: http://opensource.org/licenses/BSD-3-Clause
[GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt
[GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt
[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
[napari-plugin-template]: https://github.com/napari/napari-plugin-template

[napari]: https://github.com/napari/napari
[tox]: https://tox.readthedocs.io/en/latest/
[pip]: https://pypi.org/project/pip/
[PyPI]: https://pypi.org/
If you encounter any problems, please file an issue along with a detailed description.
50 changes: 0 additions & 50 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,53 +56,3 @@ where = ["src"]

[tool.setuptools.dynamic]
version = {attr = "napari_organoidtracker.__init__.__version__"}

[tool.black]
line-length = 79
target-version = ['py38', 'py39', 'py310']

[tool.ruff]
line-length = 79
lint.select = [
"E", "F", "W", #flake8
"UP", # pyupgrade
"I", # isort
"BLE", # flake8-blind-exception
"B", # flake8-bugbear
"A", # flake8-builtins
"C4", # flake8-comprehensions
"ISC", # flake8-implicit-str-concat
"G", # flake8-logging-format
"PIE", # flake8-pie
"SIM", # flake8-simplify
]
lint.ignore = [
"E501", # line too long. let black handle this
"UP006", "UP007", # type annotation. As using magicgui require runtime type annotation then we disable this.
"SIM117", # flake8-simplify - some of merged with statements are not looking great with black, reanble after drop python 3.9
]

exclude = [
".bzr",
".direnv",
".eggs",
".git",
".mypy_cache",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"*vendored*",
"*_vendor*",
]

target-version = "py38"
fix = true

0 comments on commit 1115170

Please sign in to comment.