From 56d873097ce1b7bd68e323b89304da4687e91eff Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Tue, 10 Jul 2012 14:12:32 -0400 Subject: [PATCH] add pyparsing to requirements for capa lib --- common/lib/capa/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/capa/setup.py b/common/lib/capa/setup.py index cf66229b88..15b3015930 100644 --- a/common/lib/capa/setup.py +++ b/common/lib/capa/setup.py @@ -4,5 +4,5 @@ setup( name="capa", version="0.1", packages=find_packages(exclude=["tests"]), - install_requires=['distribute'], + install_requires=['distribute', 'pyparsing'], )