Metadata-Version: 1.2
Name: asteval
Version: 0.9.21
Summary: Safe, minimalistic evaluator of python expression using ast module
Home-page: http://github.com/newville/asteval
Author: Matthew Newville
Author-email: newville@cars.uchicago.edu
License: OSI Approved :: MIT License
Description: ASTEVAL provides a numpy-aware, safe(ish) 'eval' function
        
        Emphasis is on mathematical expressions, and so numpy ufuncs
        are used if available.  Symbols are held in the Interpreter
        symbol table 'symtable':  a simple dictionary supporting a
        simple, flat namespace.
        
        Expressions can be compiled into ast node for later evaluation,
        using the values in the symbol table current at evaluation time.
        
Platform: UNKNOWN
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Requires-Python: >=3.6
