-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.27 KB
/
pyproject.toml
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
[tool.poetry]
name = "SPIMquant"
version = "0.1.0"
description = "Snakebids app for quantitative analysis of SPIM (lightsheet) brains"
readme = "README.md"
license = "MIT"
authors = [
"Ali Khan <alik@robarts.ca>"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
snakemake = ">=8.0.0"
snakebids = "^0.14.0"
pulp = "<2.8.0"
pandas = [
{ version = "<=2.0.3", python = "<3.9" },
{ version = ">=2.1.1", python = ">=3.12" },
]
numpy = "^1.26.4"
dask = "^2024.2.0"
zarr = "^2.17.0"
scipy = "^1.12.0"
scikit-image = "^0.22.0"
dask-image = "^2023.8.1"
ome-zarr = "^0.9.0"
sparse = "^0.15.1"
bokeh = "^3.4.1"
zarrnii = "^0.2.3-alpha.1"
#zarrnii = { path = "/localscratch/zarrnii", develop = true }
cvpl_tools = "^0.7.0"
gcsfs = "^2024.9.0.post1"
coiled = "^1.56.1"
antspyx = "^0.5.4"
snakemake-storage-plugin-http = "^0.2.3"
universal-pathlib = "^0.2.6"
[tool.poetry.scripts]
spimquant = "spimquant.run:app.run"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.2.1"
matplotlib = "^3.9.0"
seaborn = "^0.13.2"
napari = {extras = ["all"], version = "^0.4.19.post1"}
napari-ome-zarr = "^0.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"