forked from Scan-o-Matic/scanomatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·83 lines (77 loc) · 2.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python
from __future__ import absolute_import
import os
from setuptools import find_packages, setup
from scanomatic import get_version
setup(
name="Scan-o-Matic",
version=get_version(),
description="High Throughput Solid Media Image Phenotyping Platform",
long_description="""Scan-o-Matic is a high precision phenotyping platform
that uses scanners to obtain images of yeast colonies growing on solid
substrate.
The package contains a user interface as well as an extensive package
for yeast colony analysis from scanned images.
""",
author="Martin Zackrisson",
author_email="[email protected]",
url="https://github.com/Scan-o-Matic/scanomatic",
packages=find_packages(include=['scanomatic*']),
package_data={
"scanomatic": [
'ui_server_data/*.html',
'ui_server_data/js/*.js',
'ui_server_data/js/external/*.js',
'ui_server_data/style/*.css',
'ui_server_data/fonts/*',
'ui_server/templates/*',
'images/*',
'util/birds.txt',
'util/adjectives.txt',
],
'scanomatic.data': [
'migrations/env.py',
'migrations/alembic.ini',
'migrations/versions/*.py',
],
},
scripts=[
os.path.join("scripts", p) for p in [
"scan-o-matic_migrate",
"scan-o-matic_server",
]
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Application :: GTK',
'Environment :: Console',
'Intended Autdience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
install_requires=[
'alembic',
'chardet',
'enum34',
'flask',
'flask-restful',
'future',
'matplotlib',
'numpy',
'pandas',
'pillow',
'prometheus-client',
'psutil',
'psycopg2-binary',
'pytz',
'requests',
'scikit-image',
'scipy',
'setproctitle',
'sqlalchemy',
'xlrd',
],
)