-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.12 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tme-quant"
version = "0.1.0.dev0"
description = "Python translation of CurveAlign; curvelet-based quantification and napari plugin"
authors = [{ name = "Eliceiri Lab" }]
requires-python = ">=3.11"
dependencies = [
"matplotlib>=3.10.1",
"napari",
"roifile",
"numpy>=2.2.6",
"opencv-python-headless>=4.10.0.84",
"openpyxl>=3.1.5",
"pandas>=2.2.3",
"pyqt6",
"qtpy",
"scikit-image>=0.25.0",
"scikit-learn>=1.7.1",
"scipy>=1.15.2",
]
[dependency-groups]
dev = [
"build",
"pytest",
"ruff",
]
[project.optional-dependencies]
curvelops = [
"curvelops @ git+https://github.com/PyLops/curvelops@0.23.4",
]
segmentation = [
"cellcast",
"cellpose",
]
[project.entry-points."napari.manifest"]
napari-curvealign = "napari_curvealign:napari.yaml"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
napari_curvealign = ["napari.yaml"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]