-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
43 lines (42 loc) · 1.64 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='segmentation_models_pytorch_3d',
version='1.0.2',
author='Roman Sol (ZFTurbo)',
packages=[
'segmentation_models_pytorch_3d',
'segmentation_models_pytorch_3d/losses',
'segmentation_models_pytorch_3d/datasets',
'segmentation_models_pytorch_3d/base',
'segmentation_models_pytorch_3d/encoders',
'segmentation_models_pytorch_3d/decoders',
'segmentation_models_pytorch_3d/utils',
'segmentation_models_pytorch_3d/metrics',
'segmentation_models_pytorch_3d/decoders/linknet',
'segmentation_models_pytorch_3d/decoders/unet',
'segmentation_models_pytorch_3d/decoders/deeplabv3',
'segmentation_models_pytorch_3d/decoders/pan',
'segmentation_models_pytorch_3d/decoders/pspnet',
'segmentation_models_pytorch_3d/decoders/fpn',
'segmentation_models_pytorch_3d/decoders/unetplusplus',
'segmentation_models_pytorch_3d/decoders/manet',
],
url='https://github.com/ZFTurbo/segmentation_models_pytorch_3d',
description='Set of models for segmentation of 3D volumes using PyTorch.',
long_description='3D variants of popular models for segmentation like FPN, Unet, Linknet etc using Pytorch module.'
'Automatic conversion of 2D imagenet weights to 3D variant',
install_requires=[
'torch',
'torchvision>=0.5.0',
"pretrainedmodels==0.7.4",
"efficientnet-pytorch==0.7.1",
"timm==0.9.7",
"timm-3d==1.0.1",
"tqdm",
"pillow",
"six",
],
)