From 0ab5544d85c1d5a113ca2976c95abf2abda1aee2 Mon Sep 17 00:00:00 2001 From: juanifioren Date: Mon, 13 Jul 2015 16:10:31 -0300 Subject: [PATCH] Add pycrypto to requirements. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e078de8..9bc3b43 100644 --- a/setup.py +++ b/setup.py @@ -36,10 +36,12 @@ setup( 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], tests_require=[ - 'pyjwt==1.3.0' + 'pycrypto==2.6.1', + 'pyjwt==1.3.0', ], install_requires=[ + 'pycrypto==2.6.1', 'pyjwt==1.3.0', ], )