-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·95 lines (84 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
executable file
·95 lines (84 loc) · 2.02 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
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clearex"
description = "Scalable analytics for cleared and expanded tissue imaging."
authors = [{name = "The Dean Lab, UT Southwestern Medical Center"}]
readme = "README.md"
license = { file = "LICENSE.md" }
version = "0.1.1"
# BaSiCPy currently depends on scipy<1.13, and SciPy 1.12 does not publish
# Python 3.13 wheels. Restrict ClearEx to Python 3.12 until that stack moves.
requires-python = ">=3.12,<3.13"
dependencies = [
"antspyx",
"basicpy",
"bioio-ome-zarr",
"bokeh>=3.1.0",
"cython>=3.1.4",
"dask==2025.1.0",
"dask-image",
"dask-jobqueue",
"distributed==2025.1.0",
"h5py",
# u-Segment3D currently requires imagecodecs<2025.
"imagecodecs>=2024.9.22,<2025",
"jupyterlab",
"matplotlib",
"napari>0.6.1",
"neuroglancer>=2.40.1,<3.0.0",
"ome-zarr",
"ome-zarr-models>=1.6",
"opencv-python",
"pandas>=2.3.3",
"pywavelets",
"PyQt6>=6.7",
"scikit-image",
"scipy<1.13",
"seaborn",
"tensorstore",
"tifffile==2025.1.10",
"zarr>=3.1.1,<4.0",
]
[project.optional-dependencies]
decon = [
"PyPetaKit5D",
"psfmodels @ git+https://github.com/tlambert03/PSFmodels.git",
]
usegment3d = [
"u-Segment3D>=0.1.4,<0.2",
"cellpose<3",
]
dev = [
"black>=25.11.0",
"pre-commit",
"pytest",
"pytest-xvfb",
"pytest-cov",
"ty>=0.0.1a32",
"ruff>=0.14.8",
"pandas-stubs~=2.3.3",
"scipy-stubs~=1.16.3",
]
docs = [
"numpydoc",
"nbconvert",
"sphinx<6.0.0",
"sphinx_rtd_theme",
"sphinx-copybutton",
"sphinx-issues",
"sphinx-design",
"pyyaml",
"pydata_sphinx_theme==0.10.0rc2",
"sphinx-toolbox",
"mss",
"codespell",
]
[project.urls]
Source = "https://github.com/TheDeanLab/clearex"
[tool.uv]
no-binary-package = ["PyPetaKit5D"] # Always build from sdist
reinstall-package = ["PyPetaKit5D"] # Similar to --force-reinstall, would run each uv sync
[project.scripts]
clearex = "clearex.main:main"