Metadata-Version: 2.1
Name: libbaihanupython
Version: 0.3
Summary: Módulo para exemplificar construção de projetos Python no curso PyTools
Home-page: https://github.com/Dev-lucas-eduardo/libbaihanupython
Author: Lucas Eduardo Abreu Silva
Author-email: lucasabreusilva.98@gmail.com
License: GNU AFFERO GENERAL PUBLIC LICENSE
Description: # libbaihanupython
        MÃ³dulo para exemplificar a construÃ§Ã£o de projetos Python no curso Pytools
        
        Nesse curso Ã© ensinado como contribuir com projetos de cÃ³igo aberto(Open Source)
        
        Link para o curso [Python Pro](https://www.python.pro.br/)
        
        [![Build Status](https://travis-ci.com/Dev-lucas-eduardo/libbaihanupython.svg?branch=main)](https://travis-ci.com/Dev-lucas-eduardo/libbaihanupython)
        [![Updates](https://pyup.io/repos/github/Dev-lucas-eduardo/libbaihanupython/shield.svg)](https://pyup.io/repos/github/Dev-lucas-eduardo/libbaihanupython/)
        [![Python 3](https://pyup.io/repos/github/Dev-lucas-eduardo/libbaihanupython/python-3-shield.svg)](https://pyup.io/repos/github/Dev-lucas-eduardo/libbaihanupython/)
        
        Suportada a versÃ£o 3 de Python
        
        Para instalar no Windows:
        
        ```console
        py -3 -m venv .venv
        .venv\Scripts\activate
        pip install -r requirements-dev.txt
        ```
        
        Para instalar no Linux:
        
        ```console
        python3 -m venv .venv
        source .venv/bin/activate
        pip install -r requirements-dev.txt
        ```
        
        Para conferir qualiade do cÃ³digo:
        
        ```console
        flake8
        ```
        
        TÃ³picos a serem abordados:
         1. Git
         2. Virtualenv
         3. Pip
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Framework :: Pytest
Description-Content-Type: text/markdown
