-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (85 loc) · 2.6 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (85 loc) · 2.6 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
96
97
98
99
100
101
102
103
104
[project]
authors = [{name = "Ali R. Khan", email = "alik@robarts.ca"}]
name = "SPIMquant"
requires-python = ">= 3.11"
version = "0.1.0"
scripts = { spimquant = "spimquant.run:app.run" }
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.workspace]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64"]
[tool.pixi.feature.runtime.dependencies]
snakemake = ">=9.5.1,<10"
snakebids = ">=0.15.0,<0.16"
snakemake-storage-plugin-s3 = ">=0.3.3,<0.4"
snakemake-storage-plugin-gcs = ">=1.1.4,<2"
gcsfs = ">=2025.5.1,<2026"
s3fs = ">=2025.5.1,<2026"
universal-pathlib = ">=0.2.6,<0.3"
zarr = ">=3.1.6,<4"
dask = ">=2026.3.0"
conda = ">=25.5.0,<26"
snakemake-executor-plugin-slurm = ">=1.4.0,<2"
snakemake-storage-plugin-fs = ">=1.1.2,<2"
snakemake-storage-plugin-http = ">=0.3.0,<0.4.0"
greedyreg = "==0.0.20250712"
antspyx = "==0.6.1"
markdown-it-py = "<4"
docutils = "<0.22"
scipy = ">=1.11.0,<2"
matplotlib = ">=3.7.0,<4"
seaborn = ">=0.12.0,<1"
nilearn = ">=0.12.1,<0.13"
monai = ">=1.5.2,<2"
hydra-core = ">=1.3.2,<2"
scikit-image = ">=0.26.0,<0.27"
scikit-learn = ">=1.8.0,<2"
tqdm = ">=4.67.2,<5"
lightning = ">=2.6.0,<3"
wandb = ">=0.24.1,<0.25"
tensorboard = ">=2.20.0,<3"
huggingface_hub = ">=1.3.7,<2"
nibabel = ">=5.3.2,<6"
gpustat = ">=1.1.1,<2"
omegaconf = ">=2.3.0,<3"
pyarrow = ">=18.0.0,<19"
[tool.pixi.pypi-dependencies]
spimquant = { path = ".", editable = true }
zarrnii = ">=0.21.2,<0.22.0"
#zarrnii = { path = "/nfs/khan/trainees/akhan488/apps/zarrnii", editable = true }
vesselfm = { git = "https://github.com/khanlab/vesselfm", rev = "504baab" }
h5py = ">=3.14.0"
simpleitk = ">=2.4.0"
pylibtiff = ">=0.7.0"
[tool.pixi.feature.dev.dependencies]
black = ">=24.0.0, <25.0.0"
isort = ">=5.10.1, <6.0.0"
snakefmt = ">=0.10.0, <0.11.0"
pytest = "*"
jupyterlab = ">=4.4.7,<5"
[tool.pixi.feature.vis.dependencies]
napari = ">=0.6.6,<0.7"
napari-ome-zarr = ">=0.6.1,<0.7"
pyqt = ">=5.15.11,<6"
micro_sam = ">=1.6.2,<2"
[tool.pixi.environments.default]
features = ["runtime"]
[tool.pixi.environments.gpu]
features = ["runtime", "gpu"]
[tool.pixi.feature.gpu.system-requirements]
cuda = "12.0"
[tool.pixi.feature.gpu.dependencies]
cuda-version = "12.6.*"
pytorch-gpu = "*"
[tool.pixi.environments.dev]
features = ["runtime", "dev", "vis"]
[tool.pixi.environments.dev-only]
features = ["dev"]
[tool.pixi.tasks]
quality_check = "isort --profile black spimquant/*.py -c && black spimquant --check && snakefmt spimquant --check"
quality_fix = "isort --profile black spimquant/*.py && black spimquant && snakefmt spimquant"
[tool.pixi.dependencies]
pip = ">=25.3,<26"
skan = ">=0.13.1,<0.14"