Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .pyup.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
requirements:
- Pipfile
- Pipfile.lock
# autogenerated pyup.io config file

schedule: ''
Update: all
Search: True
Pin: True
Default Branch: master
Branch pre-fix: pyup-
Close PRs: True
Label PRs: False
Update hashes: True
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: python
python:
- 3.7
- 3.9
install:
- pip install -r requirements-dev.txt
- pip install -q pipenv codecov
- pipenv sync --dev
script:
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ Nesse curso é ensinado como contribuir com projetos de código aberto

Link para o curso [Python Pro](https://www.python.pro.br/)

[![Build Status](https://travis-ci.org/pythonprobr/libpythonpro.svg?branch=master)](https://travis-ci.org/pythonprobr/libpythonpro)
[![Updates](https://pyup.io/repos/github/pythonprobr/libpythonpro/shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/)
[![Python 3](https://pyup.io/repos/github/pythonprobr/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/)
[![Build Status](https://travis-ci.org/pythonprobr/libpythonpro.svg?branch=master)](https://travis-ci.org/DanieliAbreu/libpythonpro)
[![Updates](https://pyup.io/repos/github/DanieliAbreu/libpythonpro/shield.svg)](https://pyup.io/repos/github/DanieliAbreu/libpythonpro/)
[![Python 3](https://pyup.io/repos/github/DanieliAbreu/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/DanieliAbreu/libpythonpro/)
[![codecov](https://codecov.io/gh/pythonprobr/libpythonpro/branch/master/graph/badge.svg)](https://codecov.io/gh/pythonprobr/libpythonpro)

Suportada versão 3 de Python

Para instalar:

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

Para conferir qualidade de código:
Expand Down
Empty file added libpythonpro/.flake8
Empty file.
5 changes: 5 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
flake8==4.0.1
mccabe==0.6.1
pycodestyle==2.8.0
pyflakes==2.4.0
-r requirements.txt
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
certifi==2021.10.8
charset-normalizer==2.0.9
idna==3.3
requests==2.26.0
urllib3==1.26.8