自動で出欠確認を行うプログラムです。
Windwosではpowerhsell上で以下のコマンドを実行
注意点として、この時のpythonのバージョンはmediapipeが動作可能なバージョンでなければならない。 このプロジェクトはPython3.8での実行を想定している。
python -m venv aac_env
./aac_env/Scripts/Activate.ps1
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
vscodeではインタープリター選択から./aac_env/cripts/python.exe
を指定
black . --exclude aac_env
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude aac_env
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude aac_env
pytest