-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (76 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
86 lines (76 loc) · 2.21 KB
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
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools==68.2.2", "setuptools_scm>=7.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fishfeats"
version = "1.4.5"
description = "Napari plugin for RNA-Fish+cells analysis pipeline"
license.file = "LICENSE"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{name = "Gaëlle Letort"},
]
classifiers = [
"Framework :: napari",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: BSD License",
]
dependencies = [
"opencv_python_headless<4.12; python_version< '3.11' ",
"opencv_python_headless; python_version >= '3.11'",
"pyqt6<6.10; python_version < '3.11'",
"big-fish>=0.6.2",
"napari<0.6.4; python_version < '3.11'",
"napari;python_version >= '3.11'",
"appose",
"nninteractive",
"torch<=2.7",
"numpy==1.26.4; python_version < '3.11'",
"numpy; python_version >= '3.11'",
"pyqt5",
"imaris_ims_file_reader",
"czifile",
"tifffile",
"munkres",
"matplotlib",
"scikit-image",
"lxml",
"packaging",
"cellpose[distributed]>3",
]
[project.optional-dependencies]
full = [
"epyseg; python_version < '3.11'",
"tensorflow<2.15; python_version < '3.11'",
"tensorflow; python_version >= '3.11'",
"stardist",
]
#dynamic = ["version"]
[project.urls]
"Bug Tracker" = "https://github.com/gletort/FishFeats/issues"
"Documentation" = "https://gletort.github.io/FishFeats/"
"Source Code" = "https://github.com/gletort/FishFeats"
"User Support" = "https://github.com/gletort/FishFeats/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
# Explicitly list packages to include
packages = [
"fish_feats",
]
[tool.setuptools_scm]
write_to = "src/fish_feats/_version.py"
#write_to_template = "__version__ = \"{version}\""
#version_scheme = "no-guess-dev"
#local_scheme = "no-local-version"
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[project.entry-points."napari.manifest"]
fishfeats = "fish_feats:napari.yaml"