diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..246b8b4 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "Python 3", + "image": "mcr.microsoft.com/devcontainers/python:3", + "postCreateCommand": "pip install -r requirements.txt", + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + } +} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8fed041 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +numpy +scipy +matplotlib +pandas