add --run-xml to runfolder so you can generate summary reports from a
[htsworkflow.git] / setup.py
1 from setuptools import setup
2
3 setup(
4   name="gaworkflow",
5   description="some bots and other utilities to help deal with data from an illumina sequencer",
6   author="Diane Trout & Brandon King",
7   author_email="diane@caltech.edu",
8   packages=["gaworkflow", 
9             "gaworkflow.pipeline",
10             "gaworkflow.frontend",
11             "gaworkflow.frontend.fctracker",
12             "gaworkflow.frontend.eland_config"           
13              ],
14   scripts=[
15         'scripts/configure_pipeline',
16         'scripts/copier',
17         'scripts/gerald2bed.py',
18         'scripts/library.py',
19         'scripts/makebed',
20         'scripts/spoolwatcher', 
21         'scripts/rerun_eland.py',
22         'scripts/retrieve_config',
23         'scripts/runfolder',
24         'scripts/runner',
25         ],
26 )