-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathsetup.py
executable file
·42 lines (41 loc) · 1.93 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
from setuptools import setup, find_namespace_packages
setup(name='nnunetv2',
packages=find_namespace_packages(include=["nnunetv2", "nnunetv2.*"]),
version='2',
description='nnU-Net. Framework for out-of-the box biomedical image segmentation.',
url='https://github.com/MIC-DKFZ/nnUNet',
author='Helmholtz Imaging Applied Computer Vision Lab, Division of Medical Image Computing, German Cancer Research Center',
author_email='f.isensee@dkfz-heidelberg.de',
license='Apache License Version 2.0, January 2004',
install_requires=[
"torch>=1.8.0a",
"tqdm",
"dicom2nifti",
"scikit-image>=0.14",
"medpy",
"scipy",
"batchgenerators>=0.22",
"numpy",
"sklearn",
"SimpleITK",
"pandas",
"graphviz",
'tifffile',
'requests',
"nibabel",
"pytorch_lightning",
],
entry_points={
'console_scripts': [
'nnUNetv2_plan_and_preprocess = nnunetv2.experiment_planning.plan_and_preprocess:plan_and_preprocess',
'nnUNetv2_extract_fingerprint = nnunetv2.experiment_planning.plan_and_preprocess:extract_fingerprint',
'nnUNetv2_plan_experiment = nnunetv2.experiment_planning.plan_and_preprocess:plan_experiment',
'nnUNetv2_preprocess = nnunetv2.experiment_planning.plan_and_preprocess:preprocess',
'nnUNetv2_train = nnunetv2.run.train_nolightning:nnUNet_train_from_args',
'nnUNetv2_predict_from_modelfolder = nnunetv2.inference.predict_from_raw_data:predict_entry_point_modelfolder',
'nnUNetv2_predict = nnunetv2.inference.predict_from_raw_data:predict_entry_point',
],
},
keywords=['deep learning', 'image segmentation', 'medical image analysis',
'medical image segmentation', 'nnU-Net', 'nnunet']
)