mark the example submission rule files as being raw, so the escapes dont get confused
[htsworkflow.git] / setup.py
index 5bbd5e9236b81f7bb57bb9896405d5de9215562e..f37b3addaf734b2c22fcaf3aa73c655cc426ca23 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -23,8 +23,22 @@ setup(
         "scripts/htsw-srf2fastq",
         "scripts/htsw-update-archive",
         "scripts/htsw-validate",
-        ],
+    ],
+    # I should be using one or the other package import
     package_data = {
         '': ['*.turtle']
         },
-    )
+    include_package_data=True,
+    install_requires=['distribute',
+                      'django >=1.6, <1.7',
+                      'lxml >= 2.2.4',
+                      'numpy >= 1.3',
+                      'benderjab >= 0.2',
+                      'httplib2',
+                      'keyring',
+                      'PyLD',
+                      'requests',
+                      # This dependency is redland librdf, which doesn't have a public egg
+                      #'librdf >= 1.0.14',
+    ],
+)