-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
executable file
·47 lines (38 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
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='dlarson@genome.wustl.edu',
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=['svtyper==0.7.1', 'numpy', 'scipy', 'statsmodels', 'pandas==0.19.2', 'setuptools',
'google-auth',
'google-cloud-storage',
'google-compute-engine',
'crcmod',
'logzero'],
scripts=['scripts/create_coordinates'],
entry_points={
'console_scripts': [
'svtools=svtools.cli:main',
]
},
)