Skip to content

Commit

Permalink
Merge pull request #7 from deeplearningunb/1-criacao-da-estrutura-do-…
Browse files Browse the repository at this point in the history
…projeto

feat: #1 Criação da estrutura inicial do projeto
  • Loading branch information
victorhdcoelho authored May 4, 2022
2 parents 67f2f20 + 0055d87 commit 502219f
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/jarvis_action.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Jarvis application

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# jarvisAssistente
Assistente virtual Jarvis para linux


# Observações
* Além dos pacotes que estão nos requirements os usuários precisam instalar
outros pacotes via apt-get.

`sudo apt-get install qdbus-qt5 espeak python3-pyaudio`
Binary file added src/.requirements.txt.swp
Binary file not shown.
Empty file added src/cnn/.gitkeep
Empty file.
Empty file added src/data/.gitkeep
Empty file.
4 changes: 4 additions & 0 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
requests==2.25.1
speechRecognition==3.8.1
pyttsx3==2.90
selenium==3.141.0

0 comments on commit 502219f

Please sign in to comment.