From d768959084b6ec19f3888753bb6cec297b6a6d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20Wo=CC=81jcik?= Date: Thu, 1 Mar 2012 09:02:48 +0100 Subject: [PATCH] * Added argparse to install_requires. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index afeae2df..8796bb92 100644 --- a/setup.py +++ b/setup.py @@ -9,4 +9,4 @@ setup(name='httpie',version=httpie.__version__, license=httpie.__licence__, packages=['httpie'], entry_points={'console_scripts': ['http = httpie.httpie:main']}, - install_requires=['requests>=0.10.4', 'Pygments>=1.4']) + install_requires=['requests>=0.10.4', 'Pygments>=1.4', 'argparse>=1.2.1'])