-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·58 lines (53 loc) · 1.78 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
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.3.0',
author=iAnnotateSV.__author__,
author_email='[email protected]',
license=iAnnotateSV.__license__,
platforms='any',
packages=['iAnnotateSV'],
install_requires=[
'numpy==2.1.0',
'openpyxl==3.1.5',
'pandas==2.2.2',
'pillow==10.4.0',
'biopython==1.84',
'reportlab==3.6.13',
'coloredlogs==15.0.1',
],
zip_safe=False,
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 5 - Production/Stable'
),
)