forked from bioinform/rnacocktail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 709 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 709 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("src/_version.py"):
if line.startswith("__version__"):
version = line.strip().split("=")[1].strip().replace('"', '')
print version
setup(
name='RNACocktail Pipeline',
version=version,
description='RNACocktail: A comprehensive framework for accurate and efficient RNA-Seq analysis',
author='Roche Sequencing Solutions, Inc',
author_email='bina.rd@roche.com',
url='https://github.com/bioinform/rnacocktail',
packages=find_packages(),
install_requires=["pysam", "pybedtools"],
scripts=['scripts/run_rnacocktail.py','scripts/hisat2_jun2bed.py',
'scripts/gpd2gtf.py']
)