Configures Python environment for project

Adds a `.env` file to define the `PYTHONPATH` variable, ensuring
module resolution from the `src` directory. Configures VS Code
settings to use the `.env` file and enhance Python analysis
with extra paths.

Improves development environment setup.
This commit is contained in:
2025-04-26 18:54:00 +00:00
parent dc0d8242a8
commit 5061ee218f
2 changed files with 7 additions and 0 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
PYTHONPATH=src

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

@@ -0,0 +1,6 @@
{
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.extraPaths": [
"src"
]
}