From: Diane Trout Date: Tue, 30 Sep 2008 22:49:47 +0000 (+0000) Subject: add setuptools setup.py scripts for the modules I need to be able to use X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=528da44befdd27d7af1935dc1a76abc7619b690a add setuptools setup.py scripts for the modules I need to be able to use --- diff --git a/htswcommon/setup.py b/htswcommon/setup.py new file mode 100644 index 0000000..3e3b136 --- /dev/null +++ b/htswcommon/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup + +setup( + name="hts-workflow common", + description="Shared components used by the other HTS-Workflow packages", + packages=["htswcommon", + "htswcommon.data_transfer", + "htswcommon.util", + "htswcommon.messaging", + ], + scripts=[ + ], +) diff --git a/htswdataprod/setup.py b/htswdataprod/setup.py new file mode 100644 index 0000000..c4be930 --- /dev/null +++ b/htswdataprod/setup.py @@ -0,0 +1,24 @@ +from setuptools import setup + +setup( + name="hts-workflow data production", + description="Low level HTS-Workflow packages to help manage data production tasks", + packages=["htswdataprod", + "htswdataprod.automation", + "htswdataprod.illumina", + ], + scripts=[ + 'scripts/CheckImageFolders', + 'scripts/CollectReads', + 'scripts/copier', + 'scripts/eland_makebed', + 'scripts/exp_track_main.py', + 'scripts/MainPipelineScript', + 'scripts/MPCollectData', + 'scripts/MPListener', + 'scripts/runfolder', + 'scripts/runner', + 'scripts/runner_s', + 'scripts/spoolwatcher', + ], +)