remove cruft from an unimplemented feature
[htsworkflow.git] / setup.py
index 9b5060ec169c734ee217fe582d3a43133568ce1d..016b16cbd18760ffbb4ca8cc351c93570a6d15a6 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,19 +1,27 @@
 from setuptools import setup
 
 setup(
-  name="gaworkflow",
+  name="htsworkflow",
   description="some bots and other utilities to help deal with data from an illumina sequencer",
   author="Diane Trout & Brandon King",
   author_email="diane@caltech.edu",
-  packages=["gaworkflow", 
-            "gaworkflow.pipeline",
-            "gaworkflow.frontend",
-            "gaworkflow.frontend.fctracker",
-            "gaworkflow.frontend.eland_config"           
+  packages=["htsworkflow", 
+            "htsworkflow.pipelines",
+            "htsworkflow.frontend",
+            "htsworkflow.frontend.samples",
+            "htsworkflow.frontend.eland_config"           
              ],
-  scripts=['scripts/spoolwatcher', 
-           'scripts/copier',
-           'scripts/runner',
-           'scripts/retrieve_config',
-           'scripts/configure_pipeline'],
+  scripts=[
+        'scripts/configure_pipeline',
+        'scripts/copier',
+        'scripts/gerald2bed.py',
+        'scripts/library.py',
+        'scripts/makebed',
+        'scripts/rerun_eland.py',
+        'scripts/retrieve_config',
+        'scripts/runfolder',
+        'scripts/runner',
+        'scripts/spoolwatcher', 
+        'scripts/srf',
+        ],
 )