Paul McGuire - 2014-11-23

Pyparsing has a very small installation footprint - just a single Python source file! AND the MIT license is very liberal on including this source right in with your own project. So just include pyparsing.py in alongside your own code in your package. Packages such as matplotlib have done this with great success. You will not get the benefit of pyparsing as a separately versioned/installed package, but it will install with the same privs necessary to install your own package.

-- Paul