Fix typo in srf command
[htsworkflow.git] / setup.py
index 2229ed6b023ede2c73a331889cb79c8263311e12..6d3c606873ac62fb7e0e04ff5887d3b21edd2aba 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,21 @@
 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.analysis",
+            "htsworkflow.frontend.eland_config",
+            "htsworkflow.frontend.experiments",
+            "htsworkflow.frontend.inventory",
+            "htsworkflow.frontend.reports",
+            "htsworkflow.frontend.samples",
+            "htsworkflow.automation",
+            "htsworkflow.util"
              ],
   scripts=[
         'scripts/configure_pipeline',
@@ -17,10 +23,12 @@ setup(
         'scripts/gerald2bed.py',
         'scripts/library.py',
         'scripts/makebed',
-        'scripts/spoolwatcher', 
         'scripts/rerun_eland.py',
         'scripts/retrieve_config',
         'scripts/runfolder',
         'scripts/runner',
+        'scripts/spoolwatcher', 
+        'scripts/srf',
+        'scripts/mark_archived_data'
         ],
 )