[6673ef]: / setup.py

Download this file

13 lines (11 with data), 397 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from setuptools import setup
from setuptools import find_packages
setup(name='rvseg',
version='0.1',
description='Right ventricle cardiac MRI segmentation challenge',
url='http://github.com/chuckyee/cardiac-segmentation',
author='Chuck-Hou Yee',
author_email='chuckyee@gmail.com',
license='MIT',
packages=['rvseg', 'rvseg.models'],
zip_safe=False)