forked from biomedicalinformaticsgroup/Sargasso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 762 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 762 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
from setuptools import setup, find_packages
import sargasso
setup(
name="sargasso",
version=sargasso.__version__,
url='https://github.com/statbio/Sargasso',
license='MIT License',
author='Owen Dando',
author_email='owen.dando@ed.ac.uk',
packages=find_packages(),
install_requires=[
'docopt==0.6.2',
'pysam==0.8.2.1',
'schema==0.3.1',
'pytest==3.9.1',
],
scripts=[
'bin/build_star_index',
'bin/build_bowtie2_index',
'bin/collate_raw_reads',
'bin/filter_control',
'bin/filter_reads',
'bin/filter_sample_reads',
'bin/map_reads_rnaseq',
'bin/map_reads_dnaseq',
'bin/sort_reads',
'bin/species_separator',
]
)