-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (42 loc) · 1.24 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
from setuptools import setup
versionfile = 'elisa/version.py'
exec(compile(open(versionfile, 'rb').read(), versionfile, 'exec'))
setup(
name='liulab_elisa',
version=__version__,
url='https://github.com/WendyLiuLab/elisascripts',
license='MIT',
author='Tim D. Smith',
author_email='[email protected]',
description='Analyses single-cell ELISA image stacks.',
packages=['elisa', 'elisa.test'],
package_data={'elisa.test': ['*.tif']},
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
install_requires=[
# 'cairo', but it isn't on pypi
'ijroi',
'numpy',
'matplotlib',
'pandas',
'pillow',
'scipy',
'shapely',
'tifffile',
'typing',
],
entry_points={
'console_scripts': [
'elisa_id_singlets = elisa.id_singlets:main',
'elisa_normalize_bg = elisa.normalize_bg:main',
'elisa_register = elisa.register:main',
'elisa_stitch = elisa.stitch:main',
]
},
)