forked from bioinform/somaticseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·25 lines (22 loc) · 891 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from somaticseq._version import __version__ as version
print(version)
setup(
name='SomaticSeq',
version=version,
description='SomaticSeq: An ensemble approach to accurately detect somatic mutations using SomaticSeq',
author='Li Tai Fang',
author_email='[email protected]',
url='https://github.com/bioinform/somaticseq',
packages=find_packages(),
package_data={'': ['*.R']},
install_requires=['pysam', 'numpy', 'scipy'],
scripts=['somaticseq/run_somaticseq.py',
'somaticseq_parallel.py',
'utilities/dockered_pipelines/makeSomaticScripts.py',
'utilities/lociCounterWithLabels.py',
'utilities/split_Bed_into_equal_regions.py',
'somaticseq/somatic_vcf2tsv.py',
'somaticseq/single_sample_vcf2tsv.py']
)