forked from abrazhe/image-funcut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (38 loc) · 1.31 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
#!/usr/bin/python
from distutils.core import setup
setup(name='image-funcut',
version = '0.1.2',
description = "View, analyse and transform dynamic imaging data",
scripts = ['imfun/frame_viewer.py'],
requires = ['numpy','scipy','swan'],
py_modules = ['imfun.atrous',
'imfun.bwmorph',
'imfun.cluster',
'imfun.emd',
'imfun.filt',
'imfun.fnmap',
'imfun.fnutils',
'imfun.fseq',
'imfun.lib',
'imfun.leica',
'imfun.mes',
'imfun.mmt',
'imfun.multiscale',
'imfun.mvm',
'imfun.opt',
'imfun.pca',
'imfun.pica',
'imfun.som',
'imfun.synthdata',
'imfun.tiffile',
'imfun.track',
'imfun.ui',
'imfun.MLFImage'],)
classifiers=[
'Development Status :: 4 - Beta',
"Intended Audience :: Science/Research",
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
]