-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
46 lines (41 loc) · 1.42 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
from os import path
from setuptools import setup, find_packages
_dir = path.dirname(__file__)
with open(path.join(_dir,'README.md'), encoding="utf-8") as f:
long_description = f.read()
setup(
name='MVRegFus',
version='0.1',
packages=find_packages(),
url='github.com/m-albert/MVRegFus',
license='BSD 3-Clause License',
author='Marvin Albert',
author_email='[email protected]',
description='Python module for registration and fusion of multi-view light sheet imaging data',
python_requires='>=3.5',
classifiers=
[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
],
install_requires = [
'ipython',
'h5py',
'h5pickle',
'numpy',
'scipy',
'dask',
'distributed',
# 'bokeh',
'scikit-image',
# 'numba',
'SimpleITK',
'matplotlib',
'tifffile',
'ipympl',
'czifile',
'aicspylibczi',
# 'aicsimageio',
],
)