Test htsworkflow under several different django & python versions
[htsworkflow.git] / setup.py
index 5bbd5e9236b81f7bb57bb9896405d5de9215562e..802c82f91261f8f0b29693b4673faf47f2759f39 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -23,8 +23,28 @@ setup(
         "scripts/htsw-srf2fastq",
         "scripts/htsw-update-archive",
         "scripts/htsw-validate",
-        ],
-    package_data = {
+    ],
+    # I should be using one or the other package import
+    package_data={
         '': ['*.turtle']
         },
-    )
+    include_package_data=True,
+    install_requires=[
+        'distribute',
+        'django >=1.7, <1.8',
+        'lxml >= 2.2.4',
+        'numpy >= 1.6',
+        'pandas',
+        # 'benderjab >= 0.2',
+        'httplib2',
+        'keyring',
+        'jsonschema',
+        'PyLD',
+        'requests',
+        'six',
+        'psycopg2',
+        'pytz',
+        'rdflib',
+        'factory_boy',
+    ],
+)