Add venv interpreter config and gitignore

VS Code workspace settings point to project-local .venv so the correct
Python interpreter is auto-selected on open.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 12:25:44 -08:00
parent 8038a3fab4
commit da28b6a265
2 changed files with 9 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
.venv/
__pycache__/
*.pyc
.ipynb_checkpoints/

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python3",
"python.terminal.activateEnvironment": true,
"jupyter.notebookFileRoot": "${workspaceFolder}"
}