-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1000 Bytes
/
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
from setuptools import setup
import sys
import glob
import pkgutil
setup(
name='CombiVEP',
version='0.1.2',
author='Jessada Thutkawkorapin',
author_email='[email protected]',
packages=['combivep',
'combivep.engine',
'combivep.refdb',
'combivep.preproc',
],
scripts=['bin/CombiVEP_reference_updater',
'bin/CombiVEP_predictor',
'bin/CombiVEP_trainer',
],
package=['CombiVEP'],
package_data={'': ['data/CBV/*.cbv']
},
data_files=[('combivep/data/CBV', ['combivep/data/CBV/training.cbv',
'combivep/data/CBV/test.cbv',
]),
],
url='http://pypi.python.org/pypi/CombiVEP/',
license='LICENSE.txt',
description='Combined Variant Effect Predictors',
long_description=open('README.txt').read(),
install_requires=["pysam >= 0.7"],
)