-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 loc) · 1.34 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
"""Setup of KAMIStudio."""
from setuptools import setup
setup(name='KAMIStudio',
version='2.0',
description='Bio-curation tool for cellular signalling',
author='Russ Harmer, Yves-Stan Le Cornec, Sebastien Legare, Eugenia Oshurko',
license='MIT License',
packages=[
'kamistudio',
'kamistudio.instance',
'kamistudio.home',
'kamistudio.corpus'],
package_dir={},
package_data={
'kamistudio': ['instance/*'],
'kamistudio': [
'templates/*', 'static/*',
'static/tutorial/*',
'static/bootstrap/*', 'static/css/*',
'static/js/*', 'uploads/*', 'static/img/*'],
'kamistudio.home': ['templates/*', 'static/*'],
'kamistudio.corpus': ['templates/*', 'static/*'],
},
include_package_data=True,
zip_safe=False,
install_requires=[
'indra',
'flask',
'flask-session',
'flask_bootstrap',
'flask_cors',
'flask-uploads',
'flask-pymongo',
'flex',
'lxml',
'jpype1',
'werkzeug==0.16.0'
],
# dependency_links=[
# 'git+https://github.com/Kappa-Dev/ReGraph@master#egg=regraph-1.0',
# 'git+https://github.com/Kappa-Dev/KAMI@master#egg=kami-1.2.0'
# ]
)