-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
executable file
·42 lines (38 loc) · 1.39 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
from setuptools import find_packages
from setuptools import setup
REQUIRED_PACKAGES = [
"tensorflow",
"tensorflow-gpu",
"numpy",
"matplotlib",
"pandas",
"nibabel", # Neuro-Imaging file format library
"nipype", # More neuro-imaging libraries
"nilearn",
"itk", # The next three are for reading BraTS15 dataset
"pydicom",
"medpy"]
setup(name='BraTS',
version='0.1',
packages=find_packages(),
description="BraTS 2018 Challenge",
author="Jon Deaton, Cam Backes",
author_email="[email protected], [email protected]",
license='MIT',
include_package_data=True, # allows config file to be copied to GCP
zip_safe=False,
install_requires=[
"tensorflow",
"tensorflow-gpu",
"numpy",
"matplotlib",
"pandas",
"nibabel", # Neuro-Imaging file format library
"nipype", # More neuro-imaging libraries
"nilearn",
"SimpleITK" # For normalizing the data
"itk", # The next three are for reading BraTS15 dataset
"pydicom",
"medpy",
"keras"
])