forked from ilastik/lazyflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.86 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
43
44
45
46
47
48
###############################################################################
# lazyflow: data flow based lazy parallel computation framework
#
# Copyright (C) 2011-2014, the ilastik developers
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the Lesser GNU General Public License
# as published by the Free Software Foundation; either version 2.1
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# See the files LICENSE.lgpl2 and LICENSE.lgpl3 for full text of the
# GNU Lesser General Public License version 2.1 and 3 respectively.
# This information is also available on the ilastik web site at:
# http://ilastik.org/license/
###############################################################################
from setuptools import setup, find_packages
setup(
name = "lazyflow",
# version = "0.1",
packages = find_packages(),
scripts = [],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['greenlet', 'psutil', 'blist', 'h5py'],
package_data = {
'lazyflow': ['*.txt', '*.py'],
'lazyflow.drtile': ['drtile.so']
},
include_package_data = True, # include everything in source control
# metadata for upload to PyPI
author = "Christoph Straehle",
author_email = "[email protected]",
description = "Lazyflow - graph based lazy numpy data flows",
license = "BSD",
keywords = "graph numpy dataflow",
url = "http://ilastik.org/lazyflow",
)