From 15ca206d3799de9a923033c37f2e48e8f01cd7d4 Mon Sep 17 00:00:00 2001 From: David Stuebe Date: Fri, 12 Jun 2015 09:39:16 -0400 Subject: [PATCH] Add simple json --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 94bc33536209..f027116849f7 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # For python2.6 we have to require argparse since it # was not in stdlib until 2.7. requires.append('argparse>=1.1') - + requires.append('simplejson') setup_options = dict( name='awscli', @@ -36,6 +36,7 @@ extras_require={ ':python_version=="2.6"': [ 'argparse>=1.1', + 'simplejson' ] }, license="Apache License 2.0",