forked from instanseg/instanseg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (73 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "instanseg-torch"
version = "0.0.4"
authors = [
{ name="Thibaut Goldsborough", email="[email protected]" },
]
description = "Package for instanseg-torch PyPi"
readme = "README.md"
requires-python = ">=3.9, <3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
# Dependencies (Specify your requirements here)
dependencies = [
"numpy>=1.26.4",
"torch>=2.1.1",
"tqdm>=4.66.1",
"matplotlib>=3.8.2",
"colorcet>=3.0.1",
"fastremap>=1.14.0",
"rasterio>=1.3.9",
"tifffile>=2023.12.9",
"scikit-image>=0.22.0",
"aicsimageio>=4.11.0",
"bioio>=1.1.0",
"tiffslide>=2.4.0",
"slideio>=2.6.2",
]
[project.optional-dependencies]
full = [
"ipykernel>=6.28.0",
"ipywidgets>=8.1.1",
"jupyterlab>=4.0.10",
"tqdm>=4.66.1",
"imagecodecs>=2024.1.1",
"seaborn>=0.13.1",
"matplotlib>=3.8.2",
"numba>=0.58.1",
"colorcet>=3.0.1",
"fastremap>=1.14.0",
"scipy>=1.11.4",
"scikit-learn>=1.3.2",
"rasterio>=1.3.9",
"tifffile>=2023.12.9",
"scikit-image>=0.22.0",
"opencv-python>=4.9.0",
"hyperopt>=0.2.7",
"pip>=23.3.2",
"einops>=0.7.0",
"aicsimageio>=4.10.0",
"bioimageio.core>=0.5.11",
"bioimageio.spec>=0.4.9",
"onnx>=1.15.0",
"tensorboard>=2.17.0",
"torchstain>=1.3.0",
"cucim>=23.10.00",
"stardist>=0.8.5",
"torchvision>=0.16.1",
"kornia>=0.7.0",
"monai>=1.3.0",
"edt"
]
[tool.hatch.build]
include = ["instanseg/**"]
exclude = ["notebooks/**", "instanseg/examples/*", "assets/**"]
[project.urls]
Homepage = "https://github.com/instanseg/instanseg"
Issues = "https://github.com/instanseg/instanseg/issues"