Metadata-Version: 1.0
Name: RXPY
Version: 0.0.0
Summary: A Regular Expression Library for Python
Home-page: http://www.acooke.org/rxpy/
Author: Andrew Cooke
Author-email: andrew@acooke.org
License: UNKNOWN
Description: 
        RXPY is a regular expression library, written purely in Python, that is almost
        completely backwards compatible with the standard Python re library (only
        locale-based character groups are not supported).
        
        It has a modular design that allows different alphabets and engines to be
        used.  This allows regular expressions to be defined over sequences of
        arbitrary objects (a mapping between objects and the characters used in the
        regular expression must exist; this is defined by the alphabet).
        
        The initial engine is a simple recursive descent implementation, but future
        releases will support a DFA-based solution similar to re2.
        
Keywords: regular expression
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Utilities
