-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1.01 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
from setuptools import setup, find_namespace_packages
setup(name='DLUS',
packages=find_namespace_packages(include=["DLUS"]),
description='DLUS: Deep Learning-based Segmentation of Prostatic Urethra on Computed Tomography Scans for Treatment Planning',
url='https://github.com/BSEL-UC3M/DLUS',
author='IGT - BSEL-UC3M',
author_email='jpascau@ing.uc3m.es',
install_requires=[
"dcmrtstruct2nii",
"dicom2nifti",
"itk",
"keras",
"Keras-Preprocessing",
"matplotlib",
"MedPy",
"nibabel",
"nnunet==1.7.0",
"pandas",
"pydicom",
"pydicom-seg",
"scikit-image",
"scikit-learn",
"scipy",
"SimpleITK",
"sklearn",
"tensorflow==2.7.0",
"torch==1.10.1",
"tqdm"
],
keywords=['deep learning', 'image segmentation', 'medical image analysis',
'medical image segmentation', 'DLUS']
)