epicure 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
epicure-0.1.3/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2023, Gaëlle LETORT
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,5 @@
1
+ include LICENSE
2
+ include README.md
3
+
4
+ recursive-exclude * __pycache__
5
+ recursive-exclude * *.py[co]
epicure-0.1.3/PKG-INFO ADDED
@@ -0,0 +1,86 @@
1
+ Metadata-Version: 2.1
2
+ Name: epicure
3
+ Version: 0.1.3
4
+ Summary: Napari plugin to manually correct epithelia segmentation in movies
5
+ Home-page: https://gitlab.pasteur.fr/gletort/epicure
6
+ Author: Gaëlle Letort
7
+ License: BSD-3-Clause
8
+ Project-URL: Bug Tracker, https://gitlab.pasteur.fr/gletort/epicure/issues
9
+ Project-URL: Documentation, https://gitlab.pasteur.fr/gletort/epicure#README.md
10
+ Project-URL: Source Code, https://gitlab.pasteur.fr/gletort/epicure
11
+ Project-URL: User Support, https://gitlab.pasteur.fr/gletort/epicure/issues
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Framework :: napari
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: BSD License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Programming Language :: Python :: 3.8
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
24
+ Requires-Python: >=3.8
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: napari<=0.4.19
28
+ Requires-Dist: numpy
29
+ Requires-Dist: magicgui
30
+ Requires-Dist: qtpy
31
+ Requires-Dist: scikit-image
32
+ Requires-Dist: opencv_python_headless
33
+ Requires-Dist: roifile
34
+ Requires-Dist: xlsxwriter
35
+ Requires-Dist: laptrack
36
+ Requires-Dist: matplotlib
37
+ Requires-Dist: imagecodecs
38
+ Requires-Dist: edt
39
+ Provides-Extra: testing
40
+ Requires-Dist: tox; extra == "testing"
41
+ Requires-Dist: pytest; extra == "testing"
42
+ Requires-Dist: pytest-cov; extra == "testing"
43
+ Requires-Dist: pytest-qt; extra == "testing"
44
+ Requires-Dist: napari; extra == "testing"
45
+ Requires-Dist: pyqt5; extra == "testing"
46
+
47
+ # EpiCure
48
+
49
+ [![License BSD-3](https://img.shields.io/pypi/l/epicure.svg?color=green)](https://gitlab.pasteur.fr/gletort/epicure/raw/main/LICENSE)
50
+ [![PyPI](https://img.shields.io/pypi/v/epicure.svg?color=green)](https://pypi.org/project/epicure)
51
+ [![Python Version](https://img.shields.io/pypi/pyversions/epicure.svg?color=green)](https://python.org)
52
+ [![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/epicure)](https://napari-hub.org/plugins/epicure)
53
+
54
+ Napari plugin to manually correct epithelia segmentation in movies
55
+
56
+ > **Documentation in the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure)**
57
+
58
+ ## Installation
59
+
60
+ ### Install plugin
61
+ To install EpiCure on a fresh python virtual environment, type inside the environement:
62
+ ```
63
+ pip install epicure
64
+ ```
65
+
66
+ Then launch `Napari`, and the plugin should be visible in the `Plugins` list.
67
+
68
+ If you already have an environment with `Napari` installed, you can also install it directly in `Napari>Plugins>Install/Uninstall plugins`
69
+
70
+ ### Install code
71
+ To have the code to be able to modify it, clone this repository. You can use `pip install -e .` so that everytime you update the code, the plugin will be updated.
72
+
73
+ ## Usage
74
+
75
+ Refer to the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure) for documentation of the different steps possible in the pipeline.
76
+
77
+
78
+
79
+ This [napari] plugin was initialized with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.
80
+
81
+ [napari]: https://github.com/napari/napari
82
+ [Cookiecutter]: https://github.com/audreyr/cookiecutter
83
+ [file an issue]: https://github.com/gletort/epicure/issues
84
+ [tox]: https://tox.readthedocs.io/en/latest/
85
+ [pip]: https://pypi.org/project/pip/
86
+ [PyPI]: https://pypi.org/
@@ -0,0 +1,40 @@
1
+ # EpiCure
2
+
3
+ [![License BSD-3](https://img.shields.io/pypi/l/epicure.svg?color=green)](https://gitlab.pasteur.fr/gletort/epicure/raw/main/LICENSE)
4
+ [![PyPI](https://img.shields.io/pypi/v/epicure.svg?color=green)](https://pypi.org/project/epicure)
5
+ [![Python Version](https://img.shields.io/pypi/pyversions/epicure.svg?color=green)](https://python.org)
6
+ [![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/epicure)](https://napari-hub.org/plugins/epicure)
7
+
8
+ Napari plugin to manually correct epithelia segmentation in movies
9
+
10
+ > **Documentation in the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure)**
11
+
12
+ ## Installation
13
+
14
+ ### Install plugin
15
+ To install EpiCure on a fresh python virtual environment, type inside the environement:
16
+ ```
17
+ pip install epicure
18
+ ```
19
+
20
+ Then launch `Napari`, and the plugin should be visible in the `Plugins` list.
21
+
22
+ If you already have an environment with `Napari` installed, you can also install it directly in `Napari>Plugins>Install/Uninstall plugins`
23
+
24
+ ### Install code
25
+ To have the code to be able to modify it, clone this repository. You can use `pip install -e .` so that everytime you update the code, the plugin will be updated.
26
+
27
+ ## Usage
28
+
29
+ Refer to the [wiki](https://gitlab.pasteur.fr/gletort/epicure/-/wikis/EpiCure) for documentation of the different steps possible in the pipeline.
30
+
31
+
32
+
33
+ This [napari] plugin was initialized with [Cookiecutter] using [@napari]'s [cookiecutter-napari-plugin] template.
34
+
35
+ [napari]: https://github.com/napari/napari
36
+ [Cookiecutter]: https://github.com/audreyr/cookiecutter
37
+ [file an issue]: https://github.com/gletort/epicure/issues
38
+ [tox]: https://tox.readthedocs.io/en/latest/
39
+ [pip]: https://pypi.org/project/pip/
40
+ [PyPI]: https://pypi.org/
@@ -0,0 +1,72 @@
1
+ [metadata]
2
+ name = epicure
3
+ version = 0.1.3
4
+ description = Napari plugin to manually correct epithelia segmentation in movies
5
+ long_description = file: README.md
6
+ long_description_content_type = text/markdown
7
+ url = https://gitlab.pasteur.fr/gletort/epicure
8
+ author = Gaëlle Letort
9
+ license = BSD-3-Clause
10
+ license_files = LICENSE
11
+ classifiers =
12
+ Development Status :: 2 - Pre-Alpha
13
+ Framework :: napari
14
+ Intended Audience :: Developers
15
+ License :: OSI Approved :: BSD License
16
+ Operating System :: OS Independent
17
+ Programming Language :: Python
18
+ Programming Language :: Python :: 3
19
+ Programming Language :: Python :: 3 :: Only
20
+ Programming Language :: Python :: 3.8
21
+ Programming Language :: Python :: 3.9
22
+ Programming Language :: Python :: 3.10
23
+ Topic :: Scientific/Engineering :: Image Processing
24
+ project_urls =
25
+ Bug Tracker = https://gitlab.pasteur.fr/gletort/epicure/issues
26
+ Documentation = https://gitlab.pasteur.fr/gletort/epicure#README.md
27
+ Source Code = https://gitlab.pasteur.fr/gletort/epicure
28
+ User Support = https://gitlab.pasteur.fr/gletort/epicure/issues
29
+
30
+ [options]
31
+ packages = find:
32
+ install_requires =
33
+ napari <= 0.4.19
34
+ numpy
35
+ magicgui
36
+ qtpy
37
+ scikit-image
38
+ opencv_python_headless
39
+ roifile
40
+ xlsxwriter
41
+ laptrack
42
+ matplotlib
43
+ imagecodecs
44
+ edt
45
+ python_requires = >=3.8
46
+ include_package_data = True
47
+ package_dir =
48
+ =src
49
+
50
+ [options.packages.find]
51
+ where = src
52
+
53
+ [options.entry_points]
54
+ napari.manifest =
55
+ epicure = epicure:napari.yaml
56
+
57
+ [options.extras_require]
58
+ testing =
59
+ tox
60
+ pytest # https://docs.pytest.org/en/latest/contents.html
61
+ pytest-cov # https://pytest-cov.readthedocs.io/en/latest/
62
+ pytest-qt # https://pytest-qt.readthedocs.io/en/latest/
63
+ napari
64
+ pyqt5
65
+
66
+ [options.package_data]
67
+ * = *.yaml
68
+
69
+ [egg_info]
70
+ tag_build =
71
+ tag_date = 0
72
+
epicure-0.1.3/setup.py ADDED
@@ -0,0 +1,2 @@
1
+ from setuptools import setup
2
+ setup()