Test htsworkflow under several different django & python versions
[htsworkflow.git] / setup.py
index 82e0b60a6508d7f4d10282ae65a971f4c9a77fd8..802c82f91261f8f0b29693b4673faf47f2759f39 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -23,18 +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']
         },
-    install_requires=['django >=1.1, <1.4',
-                      'lxml >= 2.2.4',
-                      'numpy >= 1.3',
-                      'librdf >= 1.0.14',
-                      'benderjab >= 0.2',
-                      'httplib2',
-                      'keyring',
-                      ],
     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',
+    ],
+)