-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 916 Bytes
/
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
from setuptools import setup, find_packages
contrib = [
'Raphael Ortiz', 'Gustavo de Medeiros'
]
# setup.
setup(name='LSTree',
version='0.1',
description='Utils to process lightsheet movies of organoids',
author=', '.join(contrib),
packages=find_packages(exclude=['tests']),
install_requires=[
'holoviews',
'bokeh',
'panel',
'param',
'xarray',
'datashader',
'pyvista',
'pandas',
'numpy',
'scipy',
'scikit-image',
'tqdm',
'scikit-learn',
'imagecodecs',
'pytest',
'luigi',
'dl-utils @ git+https://github.com/fmi-basel/dl-utils',
'improc @ git+https://github.com/fmi-basel/improc',
'inter_view @ git+https://github.com/fmi-basel/inter-view',
'flowdec'
],
zip_safe=False)