forked from talkowski-lab/svtk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (33 loc) · 833 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (33 loc) · 833 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright © 2016 Matthew Stone <[email protected]>
# Distributed under terms of the MIT license.
"""
"""
from setuptools import setup, find_packages
from Cython.Build import cythonize
import pysam
setup(
name='svtk',
version='0.1',
description='Structural variation toolkit',
author='Matthew Stone',
author_email='[email protected]',
packages=find_packages(),
package_data={'svtk': ['data/*_template.vcf']},
scripts=['scripts/svtk'],
ext_modules=cythonize('svtk/utils/helpers.pyx'),
include_dirs=pysam.get_include(),
install_requires=[
'numpy',
'scipy',
'pysam>=0.11.2.2',
'pybedtools',
'cython',
'natsort',
'boto3',
'pandas',
'scikit-learn'
]
)