remove cruft from an unimplemented feature
[htsworkflow.git] / setup.py
1 from setuptools import setup
2
3 setup(
4   name="htsworkflow",
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=["htsworkflow", 
9             "htsworkflow.pipelines",
10             "htsworkflow.frontend",
11             "htsworkflow.frontend.samples",
12             "htsworkflow.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/rerun_eland.py',
21         'scripts/retrieve_config',
22         'scripts/runfolder',
23         'scripts/runner',
24         'scripts/spoolwatcher', 
25         'scripts/srf',
26         ],
27 )