-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (42 loc) · 1.6 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
from setuptools import setup
setup(name='nnunet',
packages=["nnunet",
"nnunet.dataset_conversion",
"nnunet.evaluation",
"nnunet.evaluation.model_selection",
"nnunet.experiment_planning",
"nnunet.inference",
"nnunet.network_architecture",
"nnunet.preprocessing",
"nnunet.run",
"nnunet.training",
"nnunet.training.cascade_stuff",
"nnunet.training.data_augmentation",
"nnunet.training.dataloading",
"nnunet.training.loss_functions",
"nnunet.training.network_training",
"nnunet.training.network_training.nnUNet_variants",
"nnunet.utilities",
],
version='0.6',
description='no new-net. Framework for out-of-the box medical image segmentation.',
url='https://github.com/MIC-DKFZ/nnUNet',
author='Division of Medical Image Computing, German Cancer Research Center',
author_email='[email protected]',
license='Apache License Version 2.0, January 2004',
install_requires=[
"torch",
"tqdm",
"dicom2nifti",
"scikit-image>=0.14",
"medpy",
"scipy",
"batchgenerators>=0.19.4",
"numpy",
"sklearn",
"SimpleITK",
"pandas",
],
keywords=['deep learning', 'image segmentation', 'medical image analysis',
'medical image segmentation', 'nnU-Net', 'nnunet']
)