forked from ilastik/lazyflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 818 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 818 Bytes
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
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 = "christoph.straehle@iwr.uni-heidelberg.de",
description = "Lazyflow - graph based lazy numpy data flows",
license = "BSD",
keywords = "graph numpy dataflow",
url = "http://ilastik.org/lazyflow",
)