-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.35 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 1.35 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
from setuptools import setup, find_packages
import os
current_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
exec(open("variantbreak/version.py").read())
setup(
name='variantbreak',
version=__version__,
packages=['variantbreak'],
scripts=['variantbreak/variantbreak'],
url='https://github.com/cytham/variantbreak',
download_url='https://github.com/cytham/variantbreak/releases',
license='gpl-3.0',
author='Tham Cheng Yong',
author_email='chengyong.tham@u.nus.edu',
description='Structural variant analyzer for data visualization on VariantMap',
keywords=['variantbreak', 'structural variant', 'sv', 'breakend', 'annotation', 'nanovar', 'nanopore', 'long read',
'variantmap', 'filter'],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['pybedtools>=0.8.0', 'pandas>=1.0.3', 'tables>=3.6.1', 'fastcluster>=1.1.26'],
python_requires='>=3.6',
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)