diff --git a/.vscode/launch.json b/.vscode/launch.json index 3669159..26fafc0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "Python Debugger: Matchy", "type": "debugpy", "request": "launch", - "program": "matchy.py", + "program": "py/matchy.py", "console": "integratedTerminal" } ] diff --git a/bin/run.sh b/bin/run.sh index 4fff0ad..7b09ccb 100755 --- a/bin/run.sh +++ b/bin/run.sh @@ -8,4 +8,4 @@ if [ ! -d .venv ]; then fi source .venv/bin/activate python -m pip install -r requirements.txt -python matchy.py +python py/matchy.py \ No newline at end of file diff --git a/config.py b/py/config.py similarity index 100% rename from config.py rename to py/config.py diff --git a/files.py b/py/files.py similarity index 100% rename from files.py rename to py/files.py diff --git a/matching.py b/py/matching.py similarity index 100% rename from matching.py rename to py/matching.py diff --git a/matching_test.py b/py/matching_test.py similarity index 100% rename from matching_test.py rename to py/matching_test.py diff --git a/matchy.py b/py/matchy.py similarity index 100% rename from matchy.py rename to py/matchy.py diff --git a/state.py b/py/state.py similarity index 100% rename from state.py rename to py/state.py diff --git a/state_test.py b/py/state_test.py similarity index 100% rename from state_test.py rename to py/state_test.py