-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (31 loc) · 907 Bytes
/
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
[tool.poetry]
name = "cvpl-tools"
version = "1.0.0"
description = "A Python package for utilities and classes related to the file I/O, dataset record keeping and visualization for image processing and computer vision."
authors = ["Karl5766 <karl29029@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/khanlab/cvpl_tools"
[tool.poetry.dependencies]
python = ">=3.9"
numpy = ">=1.23"
nibabel = ">=5.2.1"
pillow = ">=7.1.0"
scipy = ">=1.12.0"
matplotlib = ">=3.9"
scikit-image = ">=0.22.0"
napari = ">=0.4.19"
zarr = ">=2.17.0"
dask = ">=2024.2.0"
dask-image = ">=2024.5.3"
ome-zarr = ">=0.9.0"
fsspec = ">=2024.6.1"
# optional dependencies
nnunetv2 = { version = ">=2.5.1", optional = true }
[tool.poetry.extras]
nnunet = ["nnunetv2"]
[tool.poetry.dev-dependencies]
mypy = ">=1.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"