-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.18 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.18 KB
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
from setuptools import setup, find_namespace_packages
setup(name='ccsdg',
packages=find_namespace_packages(include=["ccsdg", "ccsdg.*"]),
version='0.0.1',
description='Channel-level Contrastive Single Domain Generalization for Medical Image Segmentation',
author='Shishuai Hu',
author_email='sshu@mail.nwpu.edu.cn',
license='MIT License',
install_requires=[
"torch>=1.6.0a",
"torchvision"
"tqdm",
"dicom2nifti",
"scikit-image>=0.14",
"medpy",
"scipy",
"batchgenerators>=0.21",
"numpy",
"sklearn",
"SimpleITK",
"pandas",
"requests",
"hiddenlayer", "graphviz", "IPython",
"nibabel", 'tifffile',
"tensorboard"
],
entry_points={
'console_scripts': [
'ccsdg_train = ccsdg.training.run_training:main',
'ccsdg_test = ccsdg.inference.run_inference:main',
],
},
keywords=['deep learning', 'image segmentation', 'medical image analysis',
'medical image segmentation', 'single domain generalization', 'contrastive learning']
)