forked from MIC-DKFZ/nnUNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d531088
commit 6b5419a
Showing
2 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,22 @@ | |
setup(name='nnunet', | ||
version='0.1', | ||
description='no new-net. Framework for out-of-the box medical image segmentation.', | ||
url='none', | ||
author='Fabian Isensee', | ||
url='https://github.com/MIC-DKFZ/nnUNet', | ||
author='Division of Medical Image Computing, German Cancer Research Center', | ||
author_email='[email protected]', | ||
license='private - fck off', | ||
zip_safe=False) | ||
license='Apache License Version 2.0, January 2004', | ||
install_requires=[ | ||
"tqdm", | ||
"dicom2nifti", | ||
"scikit-image>=0.14", | ||
"medpy", | ||
"scipy", | ||
"batchgenerators>=0.19.3", | ||
"numpy", | ||
"sklearn", | ||
"SimpleITK", | ||
"pandas", | ||
], | ||
keywords=['deep learning', 'image segmentation', 'medical image analysis', | ||
'medical image segmentation', 'nnU-Net', 'nnunet'] | ||
) |