-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (40 loc) · 1.02 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
from setuptools import setup
setup(
name='genomic_data_service',
packages=['genomic_data_service'],
include_package_data=True,
install_requires=[
'antlr4-python3-runtime==4.9.3',
'itsdangerous==2.0.1',
'click==8.0.1',
'Werkzeug==2.0.1',
'Flask==2.0.1',
'Flask-SQLAlchemy==2.5.1',
'Flask-Migrate==3.1.0',
'Flask-Script==2.0.6',
'Flask-Excel==0.0.7',
'elasticsearch==5.4.0',
'requests==2.28.1',
'pyBigWig==0.3.18',
'scikit-learn==1.0.1',
'gunicorn==20.1.0',
'boto3==1.20.46',
'redis==4.1.2',
'celery==4.4.6',
'flower==0.9.4',
'snovault-search==1.0.5',
'sqlalchemy==1.3.22',
'psycopg2==2.9.3',
'numpy==1.22.2',
'py2bit==0.3.0',
'pytfmpval==0.2.1'
],
extras_require={
'test': [
'pytest==5.3.2',
'pytest-mock==2.0.0',
'pytest-cov==3.0.0',
'coveralls==3.3.1',
]
},
)