-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 1.96 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
87
[build-system]
requires = ["setuptools==68.2.2", "setuptools_scm>=7.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "epicure"
version = "1.5.5"
description = "Napari plugin to manually correct epithelia segmentation in movies"
license.file = "LICENSE"
readme = "README.md"
requires-python = ">=3.9"
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",
]
dependencies = [
"napari[all]",
"vispy", ## something weird happens between napari and vispy 0.16. Might be fixed soonish and could be removed then
"numpy",
"qtpy",
"bioio",
"bioio-bioformats",
"bioio-tifffile",
"scikit-image",
"opencv_python_headless<4.9.0",
"roifile",
"PyQt6-WebEngine",
"magicgui",
"scipy",
"xlsxwriter",
"plotly",
"kaleido",
"imagecodecs",
"edt",
"packaging",
"laptrack>=0.15.0",
"joblib",
"appose",
]
[project.optional-dependencies]
pyqt5 = [
"PyQt5",
"PyQtWebEngine",
]
testing = [
"tox",
"pytest",
"pytest-cov",
"pytest-qt",
"napari",
"pyqt5",
]
[project.urls]
"Bug Tracker" = "https://github.com/Image-Analysis-Hub/Epicure/issues"
"Documentation" = "https://image-analysis-hub.github.io/Epicure/"
"Source Code" = "https://github.com/Image-Analysis-Hub/Epicure"
"User Support" = "https://github.com/Image-Analysis-Hub/Epicure/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
# Explicitly list packages to include
packages = [
"epicure",
]
[tool.setuptools_scm]
write_to = "src/epicure/_version.py"
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[project.entry-points."napari.manifest"]
epicure = "epicure:napari.yaml"