-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 786 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
version = "Unknown"
for line in open("breakseq2/_version.py"):
if line.startswith("__version__"):
version = line.strip().split("=")[1].strip()
print version
setup(
name='BreakSeq2',
version=version,
description='BreakSeq2: Ultrafast and accurate nucleotide-resolution analysis of structural variants',
author='Bina Technologies',
author_email='rd@bina.com',
url='https://github.com/bioinform/breakseq2',
packages = find_packages(),
install_requires = ["cython", "pysam==0.7.7", "biopython==1.65"],
scripts=['scripts/run_breakseq2.py', 'scripts/breakseq2_gen_bplib.py'],
dependency_links = ["https://pypi.python.org/packages/source/p/pysam/pysam-0.7.7.tar.gz"]
)