Forgot to update one request to request.REQUEST variable lookup
[htsworkflow.git] / setup.py
index b21419383f5b75f33e46bfecc0e4cfad547322a2..6d3c606873ac62fb7e0e04ff5887d3b21edd2aba 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,34 @@
 from setuptools import setup
 
 setup(
-  name="uashelper",
+  name="htsworkflow",
   description="some bots and other utilities to help deal with data from an illumina sequencer",
-  author="Diane Trout",
+  author="Diane Trout & Brandon King",
   author_email="diane@caltech.edu",
-  packages=["uashelper"],
-  scripts=['scripts/spoolwatcher'],
+  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',
+        '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',
+        'scripts/mark_archived_data'
+        ],
 )