-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (29 loc) · 949 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
from setuptools import setup
setup(
name = 'laocoon',
setup=['bin/count_cells'],
packages = ['laocoon'],
version = '0.1.1',
license='MIT',
description = 'Automatically and efficiently count the number of cells in a fluorescently stained image.',
author = 'Kaitlin Lim',
author_email = 'kaitlin.y.lim@gmail.com',
url = 'https://github.com/edukait/laocoon',
keywords = ['analysis', 'high-throughput', 'efficient'],
install_requires=[
'numpy',
'panda',
'mahotas',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)