-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
52 lines (47 loc) · 1.4 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('svtyper/version.py') as f:
exec(f.read())
setup(
name='svtyper',
version=__version__,
description='Bayesian genotyper for structural variants',
long_description=readme,
long_description_content_type='text/markdown',
author=__author__,
author_email='colbychiang@wustl.edu',
license='MIT License',
url='https://github.com/hall-lab/svtyper',
setup_requires=['pytest-runner'],
tests_require=['pytest==4.6.4'],
install_requires=[
'pysam>=0.15.0',
'numpy',
'scipy',
'cytoolz>=0.8.2',
],
scripts=[
'scripts/sv_classifier.py',
'scripts/update_info.py',
'scripts/vcf_allele_freq.py',
'scripts/vcf_group_multiline.py',
'scripts/vcf_modify_header.py',
'scripts/vcf_paste.py',
'scripts/lib_stats.R',
],
entry_points='''
[console_scripts]
svtyper=svtyper.classic:cli
svtyper-sso=svtyper.singlesample:cli
''',
packages=find_packages(exclude=('tests', 'etc')),
include_package_data=True,
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
)