-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 956 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
36
37
import os
from setuptools import setup, find_packages
# exec (open('version.py').read())
setup(name='detsegtra',
version='0.0.1alpha',
url='https://github.com/mpicbg-csbd/detsegtra',
description='tools for detection, segmentation, tracking of nuclei in 3D fluorescence microsopy data',
author='Coleman Broaddus',
author_email='[email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
py_modules=['segtools'],
install_requires=[
'numpy',
'matplotlib',
'tifffile',
'pandas',
'pulp',
# 'tensorflow',
# 'keras',
'torch',
'torchsummary',
'scikit-image',
'pykdtree',
'termcolor',
'sortedcollections',
'tabulate',
'scikit-learn',
'seaborn',
'networkx',
'numba',
'vispy',
],
# zip_safe=False)
)