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" + ] )