forked from JaneliaSciComp/bigstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 829 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
import setuptools
setuptools.setup(
name="bigstream",
version="1.1.2",
author="Greg M. Fleishman",
author_email="[email protected]",
description="Tools for distributed alignment of massive images",
url="https://github.com/GFleishman/bigstream",
license="MIT",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'numpy>=1.20.3',
'scipy>=1.9.1',
'opencv-python>=4.5.5.64',
'bokeh>=2.4.3',
'dask>=2022.9.1',
'dask[array]>=2022.9.1',
'dask[delayed]>=2022.9.1',
'dask[distributed]>=2022.9.1',
'ClusterWrap>=0.3.0',
'zarr>=2.12.0',
'h5py>=3.8.0',
'numcodecs>=0.9.1',
'fishspot>=0.2.3',
'SimpleITK>=2.2.0',
'tifffile>=2022.10.10'
]
)