forked from rhshah/iCallSV
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·57 lines (51 loc) · 1.61 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
52
53
54
55
56
57
from __future__ import print_function
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
import io
import codecs
import os
import sys
import iAnnotateSV
here = os.path.abspath(os.path.dirname(__file__))
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
long_description = read('README.rst', 'CHANGES.rst')
setup(
name='iCallSV',
version=iAnnotateSV.__version__,
description='The module helps to call structural variants using NGS data set on human.',
long_description=long_description,
include_package_data=True,
url='https://github.com/rhshah/iCallSV',
download_url='https://github.com/rhshah/iCallSV/tarball/0.0.7',
author=iAnnotateSV.__author__,
author_email='[email protected]',
license=iAnnotateSV.__license__,
platforms='any',
packages=['iCallSV'],
install_requires=[
'pandas==0.16.2',
'pysam==0.8.4',
'pyvcf=0.6.7',
'biopython=1.65',
'coloredlogs=5.2',
],
zip_safe=False,
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 3'
),
)