add setuptools setup.py scripts for the modules I need to be able to use
authorDiane Trout <diane@caltech.edu>
Tue, 30 Sep 2008 22:49:47 +0000 (22:49 +0000)
committerDiane Trout <diane@caltech.edu>
Tue, 30 Sep 2008 22:49:47 +0000 (22:49 +0000)
htswcommon/setup.py [new file with mode: 0644]
htswdataprod/setup.py [new file with mode: 0644]

diff --git a/htswcommon/setup.py b/htswcommon/setup.py
new file mode 100644 (file)
index 0000000..3e3b136
--- /dev/null
@@ -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 (file)
index 0000000..c4be930
--- /dev/null
@@ -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',
+        ],
+)