-
Notifications
You must be signed in to change notification settings - Fork 159
/
setup.py
30 lines (28 loc) · 1.27 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
from setuptools import setup
import io
setup(name='spliceai',
description='SpliceAI: A deep learning-based tool to identify splice variants',
long_description=io.open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
version='1.3.1',
author='Kishore Jaganathan',
license='GPLv3',
url='https://github.com/illumina/SpliceAI',
packages=['spliceai'],
install_requires=['keras>=2.0.5',
'pyfaidx>=0.5.0',
'pysam>=0.10.0',
'numpy>=1.14.0',
'pandas>=0.24.2'],
extras_require={'cpu': ['tensorflow>=1.2.0'],
'gpu': ['tensorflow-gpu>=1.2.0']},
package_data={'spliceai': ['annotations/grch37.txt',
'annotations/grch38.txt',
'models/spliceai1.h5',
'models/spliceai2.h5',
'models/spliceai3.h5',
'models/spliceai4.h5',
'models/spliceai5.h5']},
entry_points={'console_scripts': ['spliceai=spliceai.__main__:main']},
test_suite='tests')