Metadata-Version: 1.1
Name: pytugacore
Version: 0.1.1
Summary: Core Pytuga functionality without the GUI.
Home-page: UNKNOWN
Author: Fábio Macêdo Mendes
Author-email: fabiomacedomendes@gmail.com
License: UNKNOWN
Description: .. .. image:: https://travis-ci.org/*github_repository*.svg?branch=master
            :target: https://travis-ci.org/*github_repository*
        
        .. .. image:: https://coveralls.io/repos/github/*github_repository*/badge.svg?branch=master
            :target: https://coveralls.io/github/*github_repository*?branch=master
        
        
        Pytuga-core implements the core features of Pytuguês language without a
        dependency on the QTurtle Qt application. This might be useful for GUI-less
        environments such as an online judge or a Jupyterhub installation or if you
        just don't want/need a GUI interface.
        
        Most users will prefer to install the `Pytuga <http://github.com/transpyler/pytuga>`_
        package that includes a nice graphical interface. Pytuguês is a `Transpyled <http://github.com/transpyler/transpyler>`_
        enabled language that translates Python to portuguese:
        
        .. code-block:: pytuga
        
            função espiral(n):
                """
                Desenha uma espiral de n lados.
                """
        
                para cada lado de 1 até n:
                    frente(lado * 20)
                    esquerda(120)
        
            espiral(20)
        
        
        Pytuga-core installs a IPython based shell that runs with the command::
        
            $ python -m pytugacore
        
        Boa programação!
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
