Metadata-Version: 2.0
Name: boolparser
Version: 0.2.3
Summary: Boolean Parser
Home-page: http://github.com/eelsirhc/boolparser
Author: Christopher Lee
Author-email: lee@foldmountain.com
License: BSD
Keywords: Boolean,Parsing
Platform: UNKNOWN
Requires-Dist: pyparsing

boolparser
==========================

This package defines a simple boolean parser using PyParsing that allows user defined variables and floating point numbers to be used in a nested boolean comparison. For example, if the variables *a*,*b*, and *c* are defined then the following string can be parsed

    (a==1 & b<2) | c>4

The resolution of *a*, *b*, and *c* is left up to the user by inheriting from the class `EvaluateVariable` class and overriding the `eval` function. This allows the variables to be references to (say) data stored in a file.

BSD licensed.


.. This is your project NEWS file which will contain the release notes.
.. Example: http://www.python.org/download/releases/2.6/NEWS.txt
.. The content of this file, along with README.rst, will appear in your
.. project's PyPI page.

News
====

0.1
---

*Release date: Dec 13, 2012*

* Initial import of boolean parser into git.

0.2
---

*Release date: Mar 14, 2013*

* Fixing a few comments



