add setuptools setup.py scripts for the modules I need to be able to use
[htsworkflow.git] / htswdataprod / setup.py
1 from setuptools import setup
2
3 setup(
4   name="hts-workflow data production",
5   description="Low level HTS-Workflow packages to help manage data production tasks",
6   packages=["htswdataprod", 
7             "htswdataprod.automation",
8             "htswdataprod.illumina",
9              ],
10   scripts=[
11     'scripts/CheckImageFolders',
12     'scripts/CollectReads',
13     'scripts/copier',
14     'scripts/eland_makebed',
15     'scripts/exp_track_main.py',
16     'scripts/MainPipelineScript',
17     'scripts/MPCollectData',
18     'scripts/MPListener',
19     'scripts/runfolder',
20     'scripts/runner',
21     'scripts/runner_s',
22     'scripts/spoolwatcher',
23         ],
24 )