Metadata-Version: 1.0
Name: booleano
Version: 1.0a1dev-20090710
Summary: Evaluation of boolean expressions in natural languages
Home-page: http://code.gustavonarea.net/booleano/
Author: Gustavo Narea
Author-email: me@gustavonarea.net
License: MIT X License (http://www.opensource.org/licenses/mit-license.php)
Description: Evaluation of boolean expressions in natural languages
        ======================================================
        
        TODO: Complete this document.
        
        Supported grammar
        -----------------
        
        The following Backus-Naur Form (BNF) defines the supported grammar::
        
        <boolean-expression> ::= <operations>
        
        <operation> ::=
        
        <flat-operation> ::= <or-operation>*
        <or-operation> ::= <and-operation> ["OR" <and-operation>]
        <and-operation> ::= <basic-operation> ["AND" <basic-operation>]
        
        <basic-operation> ::= ["NOT"] <atom-operand>
        <atom-operand> ::= <number> | <quoted-string> | <variable>
        
        <number> ::= <digit>+ [<decimal-separator> <digit>+]
        <digit> ::= "0".."9"
        <decimal-separator> ::= "."                                   -- replaceable
        <variable> ::= <word> ["." <word>]
        
        Where the following constants can be translated:
        
        - ``"NOT"``.
        - ``"."``.
        
Keywords: boolean expression natural language condition
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Text Processing :: Linguistic
