Skip to content

Commit

Permalink
Merge pull request #10 from GertjanBisschop/add_setup
Browse files Browse the repository at this point in the history
add dependencies
  • Loading branch information
GertjanBisschop committed Sep 6, 2023
2 parents 92e1652 + 5419d33 commit 61f6c3c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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"
]
)

0 comments on commit 61f6c3c

Please sign in to comment.