Updated installtion script:
[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.analysis",
12             "htsworkflow.frontend.eland_config",
13             "htsworkflow.frontend.experiments",
14             "htsworkflow.frontend.inventory",
15             "htsworkflow.frontend.reports",
16             "htsworkflow.frontend.samples",
17             "htsworkflow.automation",
18             "htsworkflow.util"
19              ],
20   scripts=[
21         'scripts/configure_pipeline',
22         'scripts/copier',
23         'scripts/gerald2bed.py',
24         'scripts/library.py',
25         'scripts/makebed',
26         'scripts/rerun_eland.py',
27         'scripts/retrieve_config',
28         'scripts/runfolder',
29         'scripts/runner',
30         'scripts/spoolwatcher', 
31         'scripts/srf',
32         'scripts/mark_archived_data'
33         ],
34 )