From 5419d3326cf319697dba09def9200080e3c5d820 Mon Sep 17 00:00:00 2001 From: Gertjan Bisschop Date: Wed, 6 Sep 2023 16:52:47 +0100 Subject: [PATCH] add dependencies --- setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/setup.py b/setup.py index 8012dbc..0a8df51 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,30 @@ from setuptools import setup setup( + name='gimbleprep', + version='0.0.2b2', + description='Preprocess fasta, bam and vcf files ready to be used by gimble', + url='http://github.com/LohseLab/gimbleprep', + author='Lohse Lab', + author_email='', + license='GPLv3', packages=["cli", "lib"], package_dir={ "": ".", "cli": "./cli", "lib": "./lib", }, + install_requires=[ + "docopt", + "numpy", + "pandas", + "parallel", + "pysam", + "tqdm", + "bedtools", + "bcftools", + "samtools", + "vcflib", + "mosdepth=0.3.2" + ] )