X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=blobdiff_plain;f=setup.py;h=2d63df10ef7a35c623d0a0e219cf2c26571a1b6d;hp=5bbd5e9236b81f7bb57bb9896405d5de9215562e;hb=125a2f05ae50945b0bd7c9f878de885c91f213eb;hpb=d5b19bb3c5e3bb1d3cb0c12f114b69781e4ac76b diff --git a/setup.py b/setup.py index 5bbd5e9..2d63df1 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,20 @@ 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', + # This dependency is redland librdf, which doesn't have a public egg + #'librdf >= 1.0.14', + ], +)