X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=blobdiff_plain;f=setup.py;h=f37b3addaf734b2c22fcaf3aa73c655cc426ca23;hp=82e0b60a6508d7f4d10282ae65a971f4c9a77fd8;hb=HEAD;hpb=4a5ef9ae6cdfdd8cc52015b8260ca3b0dacba236 diff --git a/setup.py b/setup.py index 82e0b60..f37b3ad 100644 --- a/setup.py +++ b/setup.py @@ -23,18 +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'] }, - install_requires=['django >=1.1, <1.4', + include_package_data=True, + install_requires=['distribute', + 'django >=1.6, <1.7', 'lxml >= 2.2.4', 'numpy >= 1.3', - 'librdf >= 1.0.14', 'benderjab >= 0.2', 'httplib2', 'keyring', - ], - include_package_data=True, - - ) + 'PyLD', + 'requests', + # This dependency is redland librdf, which doesn't have a public egg + #'librdf >= 1.0.14', + ], +)