Merge branch 'master' of mus.cacr.caltech.edu:htsworkflow
[htsworkflow.git] / setup.py
index b21419383f5b75f33e46bfecc0e4cfad547322a2..5bbd5e9236b81f7bb57bb9896405d5de9215562e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,30 @@
-from setuptools import setup
+from setuptools import setup, find_packages
+from version import get_git_version
 
 setup(
-  name="uashelper",
-  description="some bots and other utilities to help deal with data from an illumina sequencer",
-  author="Diane Trout",
-  author_email="diane@caltech.edu",
-  packages=["uashelper"],
-  scripts=['scripts/spoolwatcher'],
-)
+    name="htsworkflow",
+    version=get_git_version(),
+    description="Utilities to help manage high-through-put sequencing",
+    author="Diane Trout, Brandon King",
+    author_email="diane@caltech.edu",
+    packages=find_packages(),
+    scripts=[
+        "scripts/htsw-copier",
+        "scripts/htsw-eland2bed",
+        "scripts/htsw-elandseq",
+        "scripts/htsw-gerald2bed",
+        "scripts/htsw-get-config",
+        "scripts/htsw-qseq2fastq",
+        "scripts/htsw-record-runfolder",
+        "scripts/htsw-runfolder",
+        "scripts/htsw-runner",
+        "scripts/htsw-spoolwatcher",
+        "scripts/htsw-srf",
+        "scripts/htsw-srf2fastq",
+        "scripts/htsw-update-archive",
+        "scripts/htsw-validate",
+        ],
+    package_data = {
+        '': ['*.turtle']
+        },
+    )