forked from Illumina/SpliceAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.57 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.57 KB
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
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.2',
author='Kishore Jaganathan',
author_email='kishorejaganathan@gmail.com',
license='GPLv3',
link='https://github.com/mainguyenanhvu/SpliceAI',
editor='Anh-Vu Mai-Nguyen',
editor_email='mainguyenanhvu@gmail.com',
url='https://www.linkedin.com/in/anh-vu-mai-nguyen/',
packages=['spliceai'],
install_requires=['keras>=2.0.5',
'pyfaidx>=0.5.0',
'pysam>=0.10.0',
'numpy>=1.14.0',
'pandas>=0.24.2',
'tensorflow>=2.0',
'pyyaml>=5.4.1'],
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',
'config_files/spliceai_logging_config.yml']},
entry_points={'console_scripts': ['spliceai=spliceai.__main__:main']},
test_suite='tests')