-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 781 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='gimbleprep',
version='0.0.2',
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=["gimbleprep"],
package_dir={
"": ".",
"gimbleprep": "./gimbleprep",
},
install_requires=[
"docopt",
"numpy",
"pandas",
"parallel",
"pysam",
"tqdm",
"bedtools",
"bcftools",
"samtools",
"vcflib==1.0.3",
"tabixpp==1.1.0",
"mosdepth==0.3.2",
],
entry_points={
'console_scripts': [
'gimbleprep = gimbleprep.interface:main',
]
}
)