-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.26 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.26 KB
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
import sys
from setuptools import setup
if sys.version_info < (2, 6):
raise Exception('pySVtools requires Python 2.6 or higher.')
# Todo: How does this play with pip freeze requirement files?
requires = ['pyvcf',
'natsort',
'six']
# Python 2.6 does not include the argparse module.
try:
import argparse
except ImportError:
requires.append('argparse')
import pysvtools as distmeta
setup(
name='pysvtools',
version=distmeta.__version__,
description='VCF toolkit for SV analysis',
long_description=distmeta.__doc__,
author=distmeta.__author__,
author_email=distmeta.__contact__,
url=distmeta.__homepage__,
license='MIT License',
platforms=['any'],
packages=['pysvtools', 'pysvtools.models'],
install_requires=requires,
test_suite='nose2.collector.collector',
entry_points = {
'console_scripts': [
'vcf_merge_sv_events = pysvtools.merge:main'
]
},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
keywords='bioinformatics'
)