X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=blobdiff_plain;f=setup.py;h=dc3351cf88d7e0d8a449f02220c943bb43e64d8d;hp=5bbd5e9236b81f7bb57bb9896405d5de9215562e;hb=573fb14500e40a32c03bd3734ada296da769b884;hpb=630705a8fe7ae64edbc8452036a125513256f078 diff --git a/setup.py b/setup.py index 5bbd5e9..dc3351c 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.1, <1.4', + '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', + ], +)