-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (40 loc) · 1.1 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
45
46
47
48
49
50
#!/usr/bin/env python
from os.path import join, dirname
from setuptools import setup
directory = dirname(__file__)
# Get version
with open(join(directory,'semiautocount','__init__.py'),'rU') as f:
exec f.readline()
setup(
name='semiautocount',
version=VERSION,
description='Count types of cell in a blood smear based on interactive training',
url = 'https://github.com/Victorian-Bioinformatics-Consortium/semiautocount',
author = 'Paul Harrison',
author_email = '[email protected]',
packages = [
'semiautocount'
],
package_data = {
'semiautocount' : [
'templates/*',
],
},
entry_points = {
'console_scripts' : [
'semiac = semiautocount:main',
],
},
install_requires = [
'numpy',
'scipy',
'scikit-image',
'scikit-learn',
'werkzeug',
'Jinja2',
'nesoni',
],
classifiers = [
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
],
)