-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (15 loc) · 940 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#from distutils.core import setup
from setuptools import setup, find_packages
setup(name = "gala",
version = "1.0",
url = "https://github.com/jni/gala",
description = "Gala is a python library for performing and evaluating image segmentation.",
long_description = "Gala is a python library for performing and evaluating of image segmentation. It supports n-dimensional images (images, volumes, videos, videos of volumes...) and multiple channels per image.",
author = "Juan Nunez-Iglesias",
author_email = '[email protected]',
license = 'LICENSE.txt',
packages = ['gala', 'gala.features'],
package_data = {'gala': ['testdata/*.*', 'testdata/original_grayscales/*'] },
install_requires = [ ],
scripts = ["bin/gala-segmentation-stitch", "bin/gala-segmentation-pipeline", "bin/gala-train", "bin/gala-test-package", "bin/gala-pixel", "bin/comparestacks", "bin/gala-valprob", "bin/gala-auto"]
)