diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 10:11:51 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 10:11:51 +1200 |
commit | e35e6d90b977ac19e3816b2a8029a12287c976ac (patch) | |
tree | 25adaa30d685df2f50f8175a4ca71cc042ae858b /setup.py | |
parent | bf71a9a2a03697be4332f51727fa19fc4bcb4c62 (diff) | |
download | mitmproxy-e35e6d90b977ac19e3816b2a8029a12287c976ac.tar.gz mitmproxy-e35e6d90b977ac19e3816b2a8029a12287c976ac.tar.bz2 mitmproxy-e35e6d90b977ac19e3816b2a8029a12287c976ac.zip |
Remove bundled pyparsing, install as external package
Adapt ValueLiteral parsing to suit
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -47,7 +47,8 @@ setup( # FIXME: Requirement to be removed at next release "pip>=1.5.6", "requests>=2.4.1", - "Flask>=0.10.1" + "Flask>=0.10.1", + "pyparsing>=2.0.3" ], extras_require={ 'dev': [ |