forked from MIC-DKFZ/batchgenerators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·24 lines (23 loc) · 943 Bytes
/
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
from setuptools import setup, find_packages
setup(name='batchgenerators',
version='0.24',
description='Data augmentation toolkit',
url='https://github.com/MIC-DKFZ/batchgenerators',
author='Division of Medical Image Computing, German Cancer Research Center AND Applied Computer Vision Lab, '
'Helmholtz Imaging Platform',
author_email='[email protected]',
license='Apache License Version 2.0, January 2004',
packages=find_packages(exclude=["tests"]),
install_requires=[
"pillow>=7.1.2",
"numpy>=1.10.2",
"scipy",
"scikit-image",
"scikit-learn",
"future",
"unittest2",
"threadpoolctl"
],
keywords=['data augmentation', 'deep learning', 'image segmentation', 'image classification',
'medical image analysis', 'medical image segmentation'],
)