Metadata-Version: 2.1
Name: libpythonpro-fr0
Version: 0.1
Summary: Módulo para exemplificar construção de projetos Python no curso PyTools
Home-page: https://github.com/faustoroger/libpythonpro
Author: FR
Author-email: libpythonpro@hotmail.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.8
Classifier: Framework :: Pytest
Description-Content-Type: text/markdown
Requires-Dist: requests

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

Nesse curso é ensinado como contribuir com projetos de código aberto.

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

[![Python application](https://github.com/faustoroger/libpythonpro/actions/workflows/python-app.yml/badge.svg?branch=master)](https://github.com/faustoroger/libpythonpro/actions/workflows/python-app.yml)
[![Updates](https://pyup.io/repos/github/faustoroger/libpythonpro/shield.svg)](https://pyup.io/repos/github/faustoroger/libpythonpro/)
[![Python 3](https://pyup.io/repos/github/faustoroger/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/faustoroger/libpythonpro/)
[![codecov](https://codecov.io/gh/faustoroger/libpythonpro/branch/master/graph/badge.svg?token=7TWQTRD2RK)](https://codecov.io/gh/faustoroger/libpythonpro)

Suportada versão 3 de Python

Para instalar:

```console
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements-dev.txt
```

Para conferir qualidade de código:

```console
flake8
```

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

