From 1dbe9ff7e7a71b0eaad39963ea8514b88d26c7c6 Mon Sep 17 00:00:00 2001 From: Ashley Blackmore Date: Wed, 18 Feb 2015 18:35:53 +0100 Subject: [PATCH] Update setup.py Install missing pycrypto lib --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index c9962fe..51779e7 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,9 @@ PDF parser that can be used for other purposes instead of text analysis.''', author='Yusuke Shinyama', author_email='yusuke at cs dot nyu dot edu', url='http://euske.github.io/pdfminer/index.html', + install_requires=[ + 'pycrypto', + ], packages=[ 'pdfminer', ],