-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
79 lines (69 loc) · 2.41 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[metadata]
name = napari-n2v
version = 0.1.1
author = Tom Burke, Joran Deschamps
author_email = [email protected]
url = https://github.com/juglab/napari-n2v
license = BSD-3-Clause
description = A self-supervised denoising algorithm now usable by all in napari.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Framework :: napari
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Processing
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
License :: OSI Approved :: BSD License
project_urls =
Bug Tracker = https://github.com/juglab/napari-n2v/issues
Documentation = https://juglab.github.io/napari-n2v/
Source Code = https://github.com/juglab/napari-n2v
User Support = https://github.com/juglab/napari-n2v/issues
[options]
packages = find:
include_package_data = True
python_requires = >=3.8
package_dir =
=src
# add your package requirements here
install_requires =
# h5py (dep of csbdeep and tensorflow) version <3.0 (Python 3.8) is incompatible with numpy>=1.14
numpy<1.24.0; python_version<'3.9'
numpy; python_version>='3.9'
scikit-image
bioimageio.core
n2v>=0.3.2
# dependency for compatibility with napari-workflows
napari_time_slicer >= 0.4.9
# Also compatibility with napari-workflows
# pin napari and vispy because
# https://github.com/napari/napari/issues/4415
# https://github.com/napari/napari/issues/4708
napari
qtpy
pyqtgraph
# tensorflow
tensorflow>=2.10.0; platform_system!="Darwin" or platform_machine!="arm64"
tensorflow-macos; platform_system=="Darwin" and platform_machine=="arm64"
tensorflow-metal; platform_system=="Darwin" and platform_machine=="arm64"
[options.extras_require]
testing =
pytest # https://docs.pytest.org/en/latest/contents.html
pytest-cov # https://pytest-cov.readthedocs.io/en/latest/
pytest-qt # https://pytest-qt.readthedocs.io/en/latest/
pyqt5
[options.packages.find]
where = src
[options.package_data]
* = *.yaml
[options.entry_points]
napari.manifest =
napari-n2v = napari_n2v:napari.yaml
napari.plugin =
napari-n2v_2 = napari_n2v.utils.n2v_utils