-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·48 lines (39 loc) · 1.11 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
44
from setuptools import setup
from setuptools import find_packages
#import pip
#pip.main(['install', 'git+https://www.github.com/keras-team/keras-contrib.git'])
setup(name='covid_pipeline',
version='0.1',
description='Deep Learning segmentation pipeline analysis in Python',
url='https://gitlab.com/mer17mm/mapp-coronahack',
author='Michail Mamalakis',
author_email='[email protected]',
license='GPL-3.0+',
packages=['covid_pipeline'],
install_requires=[
'niftynet',
'seaborn',
'h5py',
'numpy>=1.15.4',
'scipy>=1.1.0',
'matplotlib>=3.1.0',
'dicom',
'pydicom>=2.1.1',
'opencv-python>=4.0.0.21',
'Pillow==8.1.2',
'vtk>=7.2.0',
'future',
'keras==2.4.1',
'tensorflow>=2.4.1',
'tensorboard>=2.4.1',
'tensorflow-gpu>=2.4.1',
'rq-scheduler>=0.7.0',
'med2image',
'imageio',
'gensim',
'SimpleItk',
'networkx',
'sklearn',
],
zip_safe=False
)