From: Diane Trout Date: Tue, 20 Nov 2012 01:09:47 +0000 (-0800) Subject: Add dependency information to the setup.py script X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=4a5ef9ae6cdfdd8cc52015b8260ca3b0dacba236 Add dependency information to the setup.py script Though its still missing a bit as I don't have benderjab hosted and librdf needs to be installed seperately. --- diff --git a/setup.py b/setup.py index 5bbd5e9..82e0b60 100644 --- a/setup.py +++ b/setup.py @@ -27,4 +27,14 @@ setup( 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, + )