From: Brandon King Date: Tue, 16 Jun 2009 18:22:39 +0000 (+0000) Subject: Updated installtion script: X-Git-Tag: 0.2.2~10 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=a4058016b1cd3f31c4347a08899835721dd23c91 Updated installtion script: * Was missing some newer django apps * Was missing mark_archived_data script --- diff --git a/setup.py b/setup.py index 016b16c..a1d2fc7 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,14 @@ setup( packages=["htsworkflow", "htsworkflow.pipelines", "htsworkflow.frontend", + "htsworkflow.analysis", + "htsworkflow.frontend.eland_config", + "htsworkflow.frontend.experiments", + "htsworkflow.frontend.inventory", + "htsworkflow.frontend.reports", "htsworkflow.frontend.samples", - "htsworkflow.frontend.eland_config" + "htsworkflow.automation", + "htsworkflow.util" ], scripts=[ 'scripts/configure_pipeline', @@ -23,5 +29,6 @@ setup( 'scripts/runner', 'scripts/spoolwatcher', 'scripts/srf', + 'scripts/mark_archived_data' ], )