-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.44 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
# load README.rst
def readme():
with open('README.rst') as file:
return file.read()
setup(
name='honeybee_genotype_pipeline',
version='0.0.15',
description='python3 wrapper for calling genotypes',
long_description=readme(),
url='https://github.com/tomharrop/honeybee-genotype-pipeline',
author='Tom Harrop',
author_email='[email protected]',
license='GPL-3',
packages=find_packages(),
install_requires=[
'pandas>=0.25.3',
'snakemake==5.25.0'
],
entry_points={
'console_scripts': [
'honeybee_genotype_pipeline = honeybee_genotype_pipeline.__main__:main'
],
},
scripts={
'honeybee_genotype_pipeline/src/calculate_ldepth_cutoff.R',
'honeybee_genotype_pipeline/src/combine_vcf.py',
'honeybee_genotype_pipeline/src/plot_frq.R',
'honeybee_genotype_pipeline/src/plot_idepth.R',
'honeybee_genotype_pipeline/src/plot_ihist.R',
'honeybee_genotype_pipeline/src/plot_imiss.R',
'honeybee_genotype_pipeline/src/plot_ldepth.mean.R',
'honeybee_genotype_pipeline/src/plot_lmiss.R',
'honeybee_genotype_pipeline/src/plot_lqual.R'
},
package_data={
'honeybee_genotype_pipeline': [
'Snakefile',
'README.rst'
],
},
zip_safe=False)