[project @ Updating setup.py]
authorBrandon King <kingb@caltech.edu>
Tue, 27 Nov 2007 22:55:42 +0000 (22:55 +0000)
committerBrandon King <kingb@caltech.edu>
Tue, 27 Nov 2007 22:55:42 +0000 (22:55 +0000)
 * Added pipeline, frontend subpackages.
 * Fixed spelling error with script name.

setup.py

index 0dc2dbf6636e75111bac102be147875634c79cfe..c20c0ecdb24475eabb637b036e22049c3ace2b34 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,18 @@
 from setuptools import setup
 
 setup(
-  name="uashelper",
+  name="gaworkflow",
   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"],
+  packages=["gaworkflow", 
+            "gaworkflow.pipeline",
+            "gaworkflow.frontend",
+            "gaworkflow.frontend.fctracker",
+            "gaworkflow.frontend.eland_config"           
+             ],
   scripts=['scripts/spoolwatcher', 
            'scripts/copier',
-           'scripts/retreive_config',
+           'scripts/retrieve_config',
            'scripts/configure_pipeline'],
 )