Move python files into py dir

This commit is contained in:
Marc Di Luzio 2024-08-11 18:05:28 +01:00
parent 22ad36fb09
commit 129721eb50
9 changed files with 2 additions and 2 deletions

2
.vscode/launch.json vendored
View file

@ -8,7 +8,7 @@
"name": "Python Debugger: Matchy", "name": "Python Debugger: Matchy",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "matchy.py", "program": "py/matchy.py",
"console": "integratedTerminal" "console": "integratedTerminal"
} }
] ]

View file

@ -8,4 +8,4 @@ if [ ! -d .venv ]; then
fi fi
source .venv/bin/activate source .venv/bin/activate
python -m pip install -r requirements.txt python -m pip install -r requirements.txt
python matchy.py python py/matchy.py