-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
47 lines (46 loc) · 1.22 KB
/
setup.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
41
42
43
44
45
46
47
from setuptools import setup, find_packages
setup(
name = 'net2brain',
version = '1.1.2',
author = 'Roig Lab',
packages=find_packages(),
package_data={
"": ["*.json"],
"net2brain.architectures.configs": ["*.*"],
},
include_package_data=True,
install_requires=[
'flake8',
'librosa',
'h5py',
'sentencepiece',
'flax',
'transformers',
'einops',
'accelerate',
'matplotlib',
'statsmodels',
'requests',
'seaborn==0.12.2',
'opencv_python_headless',
'pandas',
'numpy',
'Pillow',
'prettytable',
'gdown',
'pycocotools',
'pytest',
'scikit_learn',
'scipy',
'torch',
'tqdm',
'visualpriors == 0.3.5',
'timm == 0.4.12',
'torchextractor == 0.3.0',
'torchvision',
'rsatoolbox == 0.0.3',
'pytorchvideo @ git+https://github.com/facebookresearch/pytorchvideo.git@eb04d1b', # NOTE: Change when new release published
'clip @ git+https://github.com/openai/CLIP.git',
'mit_semseg @ git+https://github.com/CSAILVision/semantic-segmentation-pytorch.git@master'
]
)