forked from rhshah/iAnnotateSV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·62 lines (57 loc) · 1.89 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
58
59
60
61
62
from __future__ import print_function
try:
from setuptools import setup, find_packages, Extension
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='iAnnotateSV',
version=iAnnotateSV.__version__,
description='The module helps to annotate structural variants called using NGS on human.',
long_description='See Readme',
include_package_data=True,
url='https://github.com/rhshah/iAnnotateSV',
download_url = 'https://github.com/rhshah/iAnnotateSV/tarball/1.2.0',
author=iAnnotateSV.__author__,
author_email='rons.shah@gmail.com',
license=iAnnotateSV.__license__,
platforms='any',
packages=['iAnnotateSV'],
install_requires=[
'numpy==1.16.5',
'openpyxl==2.6.4',
'pandas==0.24.2',
'nose==1.3.7',
'codecov==2.0.5',
'coverage==4.3.4',
'pillow==6.2.1',
'biopython==1.76',
'reportlab==3.5.42',
'coloredlogs==14.0',
'bump2version==0.5.11'
],
zip_safe=False,
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 5 - Production/Stable'
),
)