-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathdependencies.py
41 lines (38 loc) · 1.1 KB
/
dependencies.py
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
install_deps = ['numpy>=1.22.4,<=1.26.4', # will need to wait a bit for cythonized packages to catch up to numpy 2.0
'scipy',
'numba',
'edt',
'scikit-image',
'ncolor>=1.2.1',
'scikit-learn',
'torch>=1.10',
'torchvision',
'mahotas>=1.4.13',
'mgen',
'matplotlib',
'networkit',
'torchvf',
'tqdm',
'natsort',
'aicsimageio',
'numexpr',
'torch_optimizer',
'tifffile', # might be dependency of aicsimageio
'fastremap', # not sure how I missed this one
'cmap'
]
gui_deps = [
'pyqtgraph>=0.12.4',
'PyQt6.sip',
'PyQt6',
# 'google-cloud-storage',
'omnipose-theme',
'superqt',
'darkdetect',
'qtawesome',
]
distributed_deps = [
'dask',
'dask_image',
'scikit-learn',
]