forked from hall-lab/svtools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·41 lines (32 loc) · 1.24 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
from setuptools import setup, find_packages
import versioneer
'''
This package provides tools for combining, genotyping and refining structural variant calls from LUMPY in a highly scalable way. The current package efficiently scales to process thousands of individuals.
'''
setup(
name='svtools',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Tools for processing and analyzing structural variants',
long_description=__doc__,
url='https://github.com/hall-lab/svtools',
author='Ira Hall lab',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='genomics structural variants sv bioinformatics',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=['pysam>=0.8.1', 'numpy', 'scipy', 'statsmodels', 'pandas', 'setuptools'],
entry_points={
'console_scripts': [
'svtools=svtools.cli:main',
]
},
)