From b5f180a5ee377b2e066250cf5d770f09c936ca25 Mon Sep 17 00:00:00 2001 From: Matt Hickford Date: Mon, 23 Sep 2013 09:54:06 +0100 Subject: [PATCH] Fix plugins ImportError described at https://github.com/jkbr/httpie/issues/166#issuecomment-24905910 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8d4bdef..5ef67b4d 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( author=httpie.__author__, author_email='jakub@roztocil.name', license=httpie.__licence__, - packages=['httpie'], + packages=['httpie', 'httpie.plugins'], entry_points={ 'console_scripts': [ 'http = httpie.__main__:main',