Current work on simplifying the inventory tracking page.
[htsworkflow.git] / setup.py
1 from setuptools import setup
2 from version import get_git_version
3
4 setup(
5     name="htsworkflow",
6     version=get_git_version(),
7     description="Utilities to help manage high-through-put sequencing",
8     author="Diane Trout, Brandon King",
9     author_email="diane@caltech.edu",
10     packages=["htsworkflow", 
11               "htsworkflow.automation",
12               "htsworkflow.pipelines",
13               "htsworkflow.util",
14               # django site
15               "htsworkflow.frontend",
16               "htsworkflow.frontend.analysis",
17               "htsworkflow.frontend.eland_config",
18               "htsworkflow.frontend.experiments",
19               "htsworkflow.frontend.inventory",
20               "htsworkflow.frontend.reports",
21               "htsworkflow.frontend.samples",
22               ],
23     scripts=[
24         'scripts/copier',
25         'scripts/library.py',
26         'scripts/makebed',
27         'scripts/make-library-tree',
28         'scripts/mark_archived_data',
29         'scripts/qseq2fastq',
30         'scripts/retrieve_config',
31         'scripts/runfolder',
32         'scripts/runner',
33         'scripts/spoolwatcher', 
34         'scripts/srf',
35         'scripts/srf2fastq'
36         ],
37     )