-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 1003 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
import io
setup(name='deltasplice',
description='DeltaSplice: A neural network model to predict splice site usage and splicing-altering mutations',
long_description=io.open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
version='1.0.0',
packages=['deltasplice', "deltasplice.models"],
package_data={'deltasplice': [
'pretrained_models/DeltaSplice_models/model.ckpt-0',
'pretrained_models/DeltaSplice_models/model.ckpt-1',
'pretrained_models/DeltaSplice_models/model.ckpt-2',
'pretrained_models/DeltaSplice_models/model.ckpt-3',
'pretrained_models/DeltaSplice_models/model.ckpt-4',
"annotations/grch37.txt",
"annotations/grch38.txt",
"annotations/",
"data/anno/data.json"
]},
entry_points={'console_scripts': ['deltasplice=deltasplice.__main__:main']})