Metadata-Version: 1.1
Name: cypyler
Version: 0.1.0
Summary: A cython compiler for compiling source code in string form.
Home-page: https://github.com/gpkc/cypyler
Author: Guilherme Caminha
Author-email: gpkc@cin.ufpe.br
License: MIT license
Description-Content-Type: UNKNOWN
Description: =======
        Cypyler
        =======
        
        
        .. image:: https://img.shields.io/pypi/v/cypyler.svg
                :target: https://pypi.python.org/pypi/cypyler
        
        .. image:: https://img.shields.io/travis/gpkc/cypyler.svg
                :target: https://travis-ci.org/gpkc/cypyler
        
        
        .. image:: https://pyup.io/repos/github/gpkc/cypyler/shield.svg
             :target: https://pyup.io/repos/github/gpkc/cypyler/
             :alt: Updates
        
        
        
        A cython compiler for compiling source code in string form.
        
        Example:
        
        .. code:: python
        
            from cypyler import TMPCypyler
        
            code = """
            def add(x, y):
                return x + y
            """
        
            cp = TMPCypyler()
            built_module = cp.build(code)
            built_module.add(2, 3)
        
        
        * Free software: MIT license
        
Keywords: cypyler
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
