-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.09 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Oct 21 12:36:52 2019
@author: adrian tschan
"""
from distutils.core import setup
setup(name='lca',
version='1.0',
description='some modules for live cell analysis',
author='Adrian Tschan',
author_email='[email protected]',
packages=['lca', 'lca.nd', 'lca.ndt'],
package_dir={},
install_requires=[
'numpy',
'pandas',
'scipy>=1.4.1',
'networkx',
'scikit-image',
'progress',
'cellpose[all]',
'cellpose-napari',
'scikit-learn',
'h5py',
'imageio',
'matplotlib',
'progress',
'scipy',
'sklearn',
'pyyaml',
'napari-feature-visualization @ git+https://github.com/adrtsc/napari-feature-visualization',
'napari-blob-detection @ git+https://github.com/adrtsc/napari-blob-detection',
#'sslap @ git+https://github.com/OllieBoyne/sslap.git',
]
)