forked from deepmedic/deepmedic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.49 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "deepmedic",
version = "0.6",
author = "Konstantinos Kamnitsas",
author_email = "[email protected]",
description = "Efficient Multi-Scale 3D Convolutional Neural Network for Brain Lesion Segmentation",
license = "BSD",
keywords = "CNN convolutional neural network brain lesion segmentation",
url = "https://github.com/Kamnitsask/deepmedic",
download_url = 'https://github.com/Kamnitsask/deepmedic/tarball/0.5.4',
packages=find_packages(),
scripts = ['deepMedicRun'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
],
install_requires=['nibabel', 'numpy>=1.7.1', 'six>=1.9.0', 'nose>=1.3.0', 'theano>=0.8.0', 'pp'],
dependency_links=[
"http://www.parallelpython.com/downloads/pp/pp-1.6.4.tar.gz",
]
)