-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
17 lines (14 loc) · 951 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#from distutils.core import setup
from setuptools import setup, find_packages
setup(name = "ray",
version = "1.0",
description = "Ray is a python library for performance and evaluation of image segmentation, distributed under the open-source MIT license. It supports n-dimensional images (images, volumes, videos, videos of volumes...) and multiple channels per image.",
author = "Juan Nunez-Iglesias",
url = "https://github.com/jni/ray",
author_email = '[email protected]',
packages = ['ray', 'ray.features'],
package_data = {'ray': ['testdata/*.*', 'testdata/original_grayscales/*'] },
install_requires = ['scikit-learn', 'progressbar', 'scikits-image>=0.5', 'matplotlib', 'h5py>=1.5.0', 'networkx>=1.6', 'scipy>=0.10.0', 'numpy>=1.6.0', 'f2py'
],
scripts = ["bin/ray-segmentation-pipeline", "bin/ray-train", "bin/ray-test-package", "bin/ray-pixel", "bin/comparestacks", "bin/ray-valprob"]
)