From 6d79a66e69083bd2c0d66c16ee9e0dd8657686aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Mon, 26 Nov 2012 17:38:23 +0100 Subject: [PATCH] install jsonpointer in setup.py (fixes #10) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e447fc4..c201876 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ MODULES = ( 'jsonpatch', ) -REQUIREMENTS = [] +REQUIREMENTS = list(open('requirements.txt')) if sys.version_info < (2, 6): REQUIREMENTS += ['simplejson']