Metadata-Version: 2.1
Name: libpythonpro_braga
Version: 0.3
Summary: Módulo para exemplificar construção de projetos Python no curso PyTools
Home-page: https://github.com/ViniciusBrag/LibPythonPro
Author: Vinicius Braga
Author-email: Vbragadev@gmail.com
License: GNU AFFERO GENERAL PUBLIC LICENSE
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.9
Classifier: Framework :: Pytest
Description-Content-Type: text/markdown
License-File: LICENSE

# LibPythonPro

Módulo para exemplificar construção de projetos Python no curso PyTools

Nesse curso é ensinado como contribuir com projetos de Open Source

Link para o curso [Python Pro](https://pythonpro.com.br/)

[![Updates](https://pyup.io/repos/github/ViniciusBrag/LibPythonPro/shield.svg)](https://pyup.io/repos/github/ViniciusBrag/LibPythonPro/)
[![Python 3](https://pyup.io/repos/github/ViniciusBrag/LibPythonPro/python-3-shield.svg)](https://pyup.io/repos/github/ViniciusBrag/LibPythonPro/)


Suportada versão 3 de Python

Para instalar:
```Console
#for Linux
python3 -m venv .venv
source .venv/bin/activate
pip install - r requirements-dev.txt

#for windows
venv\Scripts\activate
python3 -m venv .venv
pip install - r requirements-dev.txt

```
Para conferir a qualidade do código:

```Console
flake8
```

Tòpicos a serem abordados:
1. Git
2. Virtualenv
3. Pip



